[Static] Add theming to error pages

This commit is contained in:
2024-12-31 09:06:03 +01:00
parent 38e20c2017
commit bcf24e7ed0
2 changed files with 23 additions and 0 deletions

View File

@@ -20,6 +20,18 @@
flex-direction: column; flex-direction: column;
} }
@media ( prefers-color-scheme: dark ) {
body {
background-color: rgb(20, 20, 20);
color: white;
}
.error {
color: white;
}
}
.material-symbols-outlined { .material-symbols-outlined {
font-variation-settings: font-variation-settings:
'FILL' 0, 'FILL' 0,

View File

@@ -20,6 +20,17 @@
flex-direction: column; flex-direction: column;
} }
@media ( prefers-color-scheme: dark ) {
body {
background-color: rgb(20, 20, 20);
color: white;
}
.error {
color: white;
}
}
.material-symbols-outlined { .material-symbols-outlined {
font-variation-settings: font-variation-settings:
'FILL' 0, 'FILL' 0,