mirror of
https://github.com/upscayl/upscayl.git
synced 2026-02-19 11:55:37 -05:00
- 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.
23 lines
475 B
JSON
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": {}
|
|
}
|