css: replace hardcoded values with design tokens
All checks were successful
CI / update (push) Successful in 1m34s

Replace 30 border-radius: 1000px → var(--radius-pill), 6 border-radius:
20px → var(--radius-card), 21 transition: 100ms → var(--transition-fast),
and 32 transition: 200ms → var(--transition-normal) across the codebase.
This commit is contained in:
2026-02-16 09:39:30 +01:00
parent 4191012cf1
commit 0e9daf296d
33 changed files with 282 additions and 92 deletions

View File

@@ -188,9 +188,9 @@
border: none;
cursor: pointer;
padding: 1rem;
border-radius: 1000px;
border-radius: var(--radius-pill);
color: white;
transition: 200ms;
transition: var(--transition-normal);
box-shadow: 0 0 1em 0.2em rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
@@ -248,6 +248,7 @@
gap: 0.75rem;
line-height: 1.6;
color: var(--nord4);
margin: 0;
}
@media(prefers-color-scheme: light) {