@import "tailwindcss"; /* Configuration pour forcer le mode sombre via une classe .dark */ @custom-variant dark (&:where(.dark, .dark *)); @layer base { :root { --color-gise-blue: #1a73e8; --color-gise-emerald: #10b981; } } @theme { --color-gise-accent: #2563eb; --color-gise-accentHover: #1d4ed8; } /* Le fond par défaut s'adapte automatiquement (clair/sombre) */ html { scroll-behavior: smooth; } body { @apply bg-slate-50 text-slate-900 transition-colors duration-300; } .dark body { @apply bg-slate-950 text-slate-50; }