diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-03-15 16:39:12 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2022-03-19 12:08:17 +0100 |
commit | 0e26df03e5ab2387999492c2cc7c8cf379c0536d (patch) | |
tree | 988f6719ea4b6489deca57e738382b6cce26b345 | |
parent | fad48ffa27af96ee0d9489ded88f80c1eeb238dc (diff) |
style.css: add dark mode support for example file
This stylesheet is for sfeed_frames and sfeed_html.
-rw-r--r-- | style.css | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -57,3 +57,12 @@ body.frame { body.frame #sidebar br { display: none; } +@media (prefers-color-scheme: dark) { + body { + background-color: #000; + color: #bdbdbd; + } + a { + color: #56c8ff; + } +} |