Files
upscayl/components.json
anna7261 59af19cd10 feat: enhance component structure and update styles
- Added new aliases for 'ui', 'lib', and 'hooks' in components.json for better organization.
- Introduced 'iconLibrary' property set to 'lucide'.
- Updated global CSS variables to use oklch color format for improved color management.
- Refactored styles in globals.css for consistency and added new sidebar color variables.
- Commented out unused code in SettingsTab component for clarity.
2025-12-19 17:39:12 -04:00

23 lines
475 B
JSON

{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "renderer/styles/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"iconLibrary": "lucide",
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"registries": {}
}