Files
landing-page-GISE/src/index.css
T
LathanDevers 32e1068ace
Deploy GISE landing page test / build-and-deploy (push) Failing after 11s
Contact
2026-07-28 18:57:59 +02:00

29 lines
552 B
CSS

@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;
}