add frontend

This commit is contained in:
voltsrage
2026-06-19 17:42:09 +08:00
parent 49973271e5
commit 5f69ce1a95
53 changed files with 6591 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
export default {
content: ['./index.html', './src/**/*.{vue,js,ts}'],
darkMode: 'class',
theme: {
extend: {
colors: {
severity: {
critical: { DEFAULT: '#dc2626', light: '#fef2f2', dark: '#991b1b' },
warning: { DEFAULT: '#f59e0b', light: '#fffbeb', dark: '#92400e' },
info: { DEFAULT: '#3b82f6', light: '#eff6ff', dark: '#1e40af' },
},
status: {
open: '#ef4444',
acknowledged: '#f59e0b',
resolved: '#22c55e',
escalated: '#7c3aed',
},
risk: {
low: '#22c55e',
medium: '#f59e0b',
high: '#ef4444',
},
},
},
},
}