mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 18:50:56 +08:00
- Changed the main CSS file reference from `globals.css` to `theme.css` in `components.json` for better theme management. - Introduced `index.css` to export only CSS variables, allowing npm users to utilize design tokens without overriding Tailwind defaults. - Removed `globals.css` as it is no longer needed with the new structure. - Updated `package.json` to reflect changes in CSS file paths. - Enhanced `README.md` to clarify installation and configuration steps for the new styling approach.
22 lines
509 B
JSON
22 lines
509 B
JSON
{
|
|
"$schema": "https://ui.shadcn.com/schema.json",
|
|
"aliases": {
|
|
"components": "@cherrystudio/ui/components",
|
|
"hooks": "@cherrystudio/ui/hooks",
|
|
"lib": "@cherrystudio/ui/lib",
|
|
"ui": "@cherrystudio/ui/components/primitives",
|
|
"utils": "@cherrystudio/ui/utils"
|
|
},
|
|
"iconLibrary": "lucide",
|
|
"rsc": false,
|
|
"style": "new-york",
|
|
"tailwind": {
|
|
"baseColor": "zinc",
|
|
"config": "",
|
|
"css": "src/styles/theme.css",
|
|
"cssVariables": true,
|
|
"prefix": ""
|
|
},
|
|
"tsx": true
|
|
}
|