feat(frontend): update theme configuration and color scheme

- Change Tailwind CSS configuration from neutral to slate base color
- Rename style.css to theme.css for better organization
- Update main.js to import the new theme.css file
- Refactor design tokens in style.css with updated color palette
- Replace old color variables with new oklch-based color system
- Add shadcn compatibility variables for component styling
- Update primary, secondary, and accent colors with new values
- Modify destructive, border, input, and ring color definitions
This commit is contained in:
2026-03-15 22:43:25 +08:00
parent 790f1751f2
commit a28b27d300
4 changed files with 173 additions and 207 deletions

View File

@@ -4,8 +4,8 @@
"typescript": true,
"tailwind": {
"config": "",
"css": "src/style.css",
"baseColor": "neutral",
"css": "src/theme.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},