1

Refactor: centraliser les couleurs du thème dans des variables CSS

This commit is contained in:
2025-09-17 10:36:30 +02:00
parent 92ad1acfa1
commit c327f865ea
8 changed files with 125 additions and 78 deletions

View File

@@ -4,12 +4,12 @@ body>footer {
max-width: 1200px;
margin: 2rem auto 0 auto;
padding: 2rem;
background: linear-gradient(to bottom, rgba(15, 15, 15, 1), rgba(1, 1, 1, 1));
background: linear-gradient(to bottom, var(--surface-charcoal), var(--surface-onyx));
border-radius: 2rem 2rem 0 0;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
box-shadow: 0 8px 20px var(--overlay-black-60);
text-align: center;
color: var(--text-dim);
border-top: 2px solid rgba(255, 255, 255, 0.2);
border-top: 2px solid var(--bg-white-20);
p {
font-size: 0.85rem;
@@ -38,7 +38,7 @@ body>footer {
&:hover {
color: var(--text-white);
background: rgba(138, 180, 248, 0.2);
background: var(--accent-blue-alpha-20);
border-radius: 3px;
}
}
@@ -62,7 +62,7 @@ body>footer {
flex-direction: column;
margin-top: 0.5rem;
padding-top: 0.5rem;
border-top: 2px solid rgba(255, 255, 255, 0.15);
border-top: 2px solid var(--bg-white-15);
list-style: none;
padding-left: 0;
gap: 0.3rem;