mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 10:04:54 +02:00
[style] add dark mode (#2029)
This commit is contained in:
parent
c673917aca
commit
3637777070
2 changed files with 75 additions and 0 deletions
|
@ -120,3 +120,26 @@ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockq
|
|||
}
|
||||
|
||||
}
|
||||
|
||||
/* Dark theme, will automatically be set for those that have dark mode on their OS. */
|
||||
@media (prefers-color-scheme: dark){
|
||||
|
||||
* {
|
||||
scrollbar-color: #202324 #454a4d;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #202325;
|
||||
color: #e8e6e3;
|
||||
}
|
||||
|
||||
a, a:link, a:visited {
|
||||
color: #0A6AB6;
|
||||
}
|
||||
|
||||
/* Section */
|
||||
section {
|
||||
background-color: #181A1B;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue