Tailwind UI by DevSync
npm install devsyncui.devsync- to avoid conflicts and are ready to drop into any project. This library is perfect for developers who want consistent, customizable, and clean UI without writing everything from scratch.
.devsync-* to prevent naming collisions
html
`
$3
`bash
npm create vite@latest my-app -- --template react
cd my-app
npm install
`
$3
`bash
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
`
โ ๏ธ Note: If tailwind.config.js or postcss.config.js aren't created automatically, create them manually:
postcss.config.js (Recommended Production Version)
`js
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {})
}
}
`
$3
`bash
npm install devsyncui
`
$3
`css
@tailwind base;
@tailwind components;
@tailwind utilities;
/ Import DevSyncUI styles /
@import 'devsyncui/style';
`
$3
โ ๏ธ Note: If tailwind.config.js or postcss.config.js aren't created automatically, create them manually:
`js
import devsyncPlugin from 'devsyncui/plugin';
export default {
content: [
"./index.html",
"./src/*/.{js,ts,jsx,tsx}",
"./node_modules/devsyncui/*/.{js,ts,jsx,tsx,css}",
"./node_modules/devsyncui/dist/mini.{js,css}"
],
theme: {
extend: {},
},
plugins: [devsyncPlugin],
}
`
โ
This registers the DevSyncUI plugin with Tailwind CSS.
---
๐ Component Classes
View the full list of utility classes, variants, and themes on the official documentation site.
---
๐ License & Usage Terms
See full terms.md
---
๐ฌ Feedback & Contributions
Feel free to open GitHub Issues for bugs or suggestions. Contributions will be open soon.
---
๐ Links
- ๐ฆ NPM Package: devsyncui
- ๐ง Author: Soumay Sikchi
- ๐จ Demo Website: Coming soon
- ๐งพ Documentation: devsyncui.dev
---
๐ License & Usage Terms
``markdown