feat(ui): replace palette with slate/navy monitoring dashboard theme

This commit is contained in:
2026-03-19 18:25:19 -04:00
parent a25c332cda
commit 8b189d72f4
+23 -15
View File
@@ -11,35 +11,43 @@ export default createVuetify({
defaultTheme: 'dark', defaultTheme: 'dark',
themes: { themes: {
dark: { dark: {
dark: true,
colors: { colors: {
primary: '#1976D2', background: '#0F172A',
secondary: '#424242', surface: '#1E293B',
accent: '#82B1FF', primary: '#60A5FA',
error: '#FF5252', secondary: '#94A3B8',
info: '#2196F3', error: '#F87171',
success: '#4CAF50', warning: '#FBBF24',
warning: '#FFC107', success: '#34D399',
info: '#38BDF8',
}, },
}, },
light: { light: {
dark: false,
colors: { colors: {
primary: '#1976D2', background: '#F1F5F9',
secondary: '#424242', surface: '#FFFFFF',
accent: '#82B1FF', primary: '#2563EB',
error: '#FF5252', secondary: '#475569',
info: '#2196F3', error: '#EF4444',
success: '#4CAF50', warning: '#F59E0B',
warning: '#FFC107', success: '#10B981',
info: '#0EA5E9',
}, },
}, },
}, },
}, },
defaults: { defaults: {
VCard: { VCard: {
elevation: 2, elevation: 0,
border: true,
}, },
VBtn: { VBtn: {
variant: 'flat', variant: 'flat',
}, },
VChip: {
rounded: 'md',
},
}, },
}) })