summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-03-15 16:39:12 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-03-19 12:08:17 +0100
commit0e26df03e5ab2387999492c2cc7c8cf379c0536d (patch)
tree988f6719ea4b6489deca57e738382b6cce26b345
parentfad48ffa27af96ee0d9489ded88f80c1eeb238dc (diff)
style.css: add dark mode support for example file
This stylesheet is for sfeed_frames and sfeed_html.
-rw-r--r--style.css9
1 files changed, 9 insertions, 0 deletions
diff --git a/style.css b/style.css
index 7ce6d39..e2b674e 100644
--- a/style.css
+++ b/style.css
@@ -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;
+ }
+}