Merge pull request 'dark theme support' (#1) from pieter/maotube:design into design

Reviewed-on: Reimar/maotube#1
This commit is contained in:
Reimar 2024-01-19 22:59:20 +00:00
commit 6170788ebf

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 {