Files
vigilcare-clinical/vigilcare-dashboard/tailwind.config.js
T
2026-06-19 17:42:09 +08:00

26 lines
707 B
JavaScript

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',
},
},
},
},
}