first test commit
Deploy GISE landing page / build-and-deploy (push) Successful in 17s
Deploy GISE landing page test / build-and-deploy (push) Successful in 16s

This commit is contained in:
LathanDevers
2026-07-28 11:10:36 +02:00
parent 599c5d5526
commit f83eb53cf4
14 changed files with 996 additions and 467 deletions
+22
View File
@@ -0,0 +1,22 @@
@import "tailwindcss";
/* Configuration pour forcer le mode sombre via une classe .dark */
@custom-variant dark (&:where(.dark, .dark *));
@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;
}