This commit is contained in:
KONE SOREL 2026-04-06 15:17:27 +00:00
parent a6b37dc20b
commit 0249796dbd

View File

@ -4,6 +4,12 @@
/* ---------- Variables ---------- */ /* ---------- Variables ---------- */
:root { :root {
/* Brand Colors — Charcoal / Gris neutre (zéro vert) */
--color-primary: #212E53; /*#2e3440;*/ /* charcoal foncé */
--color-primary-light: #4c566a; /* slate moyen */
--color-primary-dark: #1a1d24; /* quasi-noir */
--color-primary-ghost: rgba(33, 46, 83, 0.05); /* Ajusté sur le Charcoal */
--brand: #0088cf; --brand: #0088cf;
--brand-dark: #006ba3; --brand-dark: #006ba3;
--brand-light: #e6f4fb; --brand-light: #e6f4fb;
@ -177,7 +183,7 @@ a { text-decoration: none; }
.portail-title { .portail-title {
font-size: 1.35rem; font-size: 1.35rem;
font-weight: 700; font-weight: 700;
color: var(--brand); color: var(--color-primary);
letter-spacing: .4px; letter-spacing: .4px;
margin-bottom: 6px; margin-bottom: 6px;
text-align: center; text-align: center;
@ -308,9 +314,9 @@ a { text-decoration: none; }
.btn-login { .btn-login {
width: 100%; width: 100%;
height: 46px; height: 46px;
background: var(--brand); background: var(--color-primary);
color: var(--white); color: var(--white);
border: 2px solid var(--brand); border: 2px solid var(--color-primary);
border-radius: var(--border-r); border-radius: var(--border-r);
font-size: 1rem; font-size: 1rem;
font-weight: 700; font-weight: 700;
@ -327,7 +333,7 @@ a { text-decoration: none; }
.btn-login:hover { .btn-login:hover {
background: var(--white); background: var(--white);
color: var(--brand); color: var(--color-primary);
box-shadow: none; box-shadow: none;
} }