diff options
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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); + } +} |