Synk fra arbeidsrepoet

This commit is contained in:
Vaultnord
2026-08-30 01:52:21 +02:00
parent 6f0d5c814d
commit 700a7dc040
+18 -5
View File
@@ -74,11 +74,24 @@ bit-landing-header a {
}
/* --- illustrasjoner -------------------------------------------------- */
/* Safen på innloggingssiden er en inline SVG med klientens blåtoner. Vi kan
ikke fargelegge enkeltbaner utenfra uten å kjenne dem, men et hue-skift på
hele figuren lander den i samme familie som resten. */
svg:has(.tw-fill-illustration-logo) {
filter: hue-rotate(142deg) saturate(.8);
/* Safen og bakgrunnsfigurene er inline SVG-er som henter fargene sine fra
variabler. Å legge et hue-filter på dem gjetter feil figur og gir rare
resultater - variablene treffer presist. */
.theme_light {
--color-illustration-bg-primary: 176 230 226;
--color-illustration-bg-secondary: 126 214 209;
--color-illustration-bg-tertiary: 240 250 249;
--color-illustration-outline: 18 102 106;
--color-illustration-logo: 23 128 125;
--color-illustration-tertiary: 235 203 139;
}
.theme_dark {
--color-illustration-bg-primary: 26 110 108;
--color-illustration-bg-secondary: 61 210 204;
--color-illustration-bg-tertiary: 243 246 249;
--color-illustration-outline: 8 47 51;
--color-illustration-logo: 255 255 255;
--color-illustration-tertiary: 235 203 139;
}
/* --- bunntekst med kildekodelenke ------------------------------------ */