style.css: add dark mode support for example file

This stylesheet is for sfeed_frames and sfeed_html.
This commit is contained in:
Hiltjo Posthuma 2022-03-15 16:39:12 +01:00
parent fad48ffa27
commit 0e26df03e5
1 changed files with 9 additions and 0 deletions

View File

@ -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;
}
}