dark theme support

This commit is contained in:
Theis Pieter Hollebeek 2024-01-19 22:58:35 +01:00
parent 5520bce855
commit 4293cb7b6d

View File

@ -13,7 +13,14 @@ body {
text-align: center;
font-family: system-ui, sans-serif;
background-color: #dff3f1;
color: black;
color: #211;
}
@media (prefers-color-scheme: dark) {
body {
background: #211;
color: #dff3f1;
}
}
.mao-error {