/** @type {import('tailwindcss').Config} */ export default { content: [ "./index.html", "./src/**/*.{js,ts,jsx,tsx}", ], theme: { extend: { colors: { // Thème sombre Security Dashboard background: { DEFAULT: '#0F172A', // Slate 900 secondary: '#1E293B', // Slate 800 card: '#334155', // Slate 700 }, text: { primary: '#F8FAFC', // Slate 50 secondary: '#94A3B8', // Slate 400 disabled: '#64748B', // Slate 500 }, // Menaces threat: { critical: '#EF4444', // Red 500 critical_bg: '#7F1D1D', high: '#F97316', // Orange 500 high_bg: '#7C2D12', medium: '#EAB308', // Yellow 500 medium_bg: '#713F12', low: '#22C55E', // Green 500 low_bg: '#14532D', }, // Accents accent: { primary: '#3B82F6', // Blue 500 success: '#10B981', // Emerald 500 } } }, }, plugins: [], }