fix: post Dark mode fixes

This commit is contained in:
Eric Gullickson
2025-12-27 20:00:51 -06:00
parent 1799f2fee1
commit 69171f7778
17 changed files with 125 additions and 95 deletions

View File

@@ -13,4 +13,22 @@ body {
* {
box-sizing: border-box;
}
:root {
color-scheme: light;
}
:root.dark {
color-scheme: dark;
}
html {
background-color: #ffffff;
color: #1e293b;
}
html.dark {
background-color: #231F1C;
color: #F2F3F6;
}