aboutsummaryrefslogtreecommitdiffhomepage
path: root/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'style.css')
-rw-r--r--style.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/style.css b/style.css
index 665a853..6f5e443 100644
--- a/style.css
+++ b/style.css
@@ -11,6 +11,7 @@ html {
body {
background: #fff;
border: 2px solid #212738;
+ color: black;
font-family: 'Verdana', sans-serif;
font-size: 15px;
line-height: 1.4;
@@ -224,3 +225,15 @@ footer p {
white-space: nowrap;
}
}
+
+@media (prefers-color-scheme: dark) {
+ html {
+ background: black;
+ }
+ body {
+ filter: invert(0.85);
+ }
+ img {
+ filter: invert(1);
+ }
+}