summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-12-12 09:15:03 +0300
committerAndrew Dolgov <[email protected]>2019-12-12 09:15:03 +0300
commit351f32cd42ef0e54e75b1e42abe5d8f4e8ea9cca (patch)
tree0e93399ccade7d9915368e531a9dcae89146faca /themes
parent520e31b1621a69ce3157553c8ae29991555edbe4 (diff)
default.css: auto switch night/day modes
Diffstat (limited to 'themes')
-rw-r--r--themes/default.css7
1 files changed, 6 insertions, 1 deletions
diff --git a/themes/default.css b/themes/default.css
index 545eb34..99d602e 100644
--- a/themes/default.css
+++ b/themes/default.css
@@ -1 +1,6 @@
-/* placeholder */
+@media (prefers-color-scheme: dark) {
+ body, .loading, html:-webkit-full-screen {
+ background : black;
+ color : #ccc;
+ }
+}