forked from cardosofelipe/fast-next-template
- **Tailwind Config:** Clear custom config path and update base color to `zinc`. - **Design System:** Replace existing CSS with OKLCH color model for improved accessibility and uniformity. - **Typography & Themes:** Use Geist fonts, define light/dark themes with enhanced semantic variables. - **Global Styles:** Add consistent border colors, smooth transitions, and reusable variables for Tailwind integration.
21 lines
401 B
JSON
Executable File
21 lines
401 B
JSON
Executable File
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"style": "new-york",
|
|
"rsc": true,
|
|
"tsx": true,
|
|
"tailwind": {
|
|
"config": "",
|
|
"css": "src/app/globals.css",
|
|
"baseColor": "zinc",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"aliases": {
|
|
"components": "@/components",
|
|
"utils": "@/lib/utils",
|
|
"ui": "@/components/ui",
|
|
"lib": "@/lib",
|
|
"hooks": "@/hooks"
|
|
}
|
|
}
|