refactor(ui): standardize page layouts and component styling

Introduce structural CSS classes for page shells, headers, and surface cards
Update primary theme color to red and neutral to zinc across the application
This commit is contained in:
2026-05-08 16:25:42 +08:00
parent bc009cffda
commit 227c64d346
12 changed files with 454 additions and 194 deletions

View File

@@ -1,8 +1,8 @@
export default defineAppConfig({
ui: {
colors: {
primary: 'amber',
neutral: 'stone'
primary: 'red',
neutral: 'zinc'
}
}
})