aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex <alexta69@gmail.com>2021-12-11 11:33:40 +0200
committerGitHub <noreply@github.com>2021-12-11 11:33:40 +0200
commitd708555ef70ba68dfbe57a04c03cab0586b26659 (patch)
tree58561e72d2d7101177cf1a5057e790009aac4b44
parentMerge pull request #86 from omeryagmurlu/master (diff)
parentadd a simple dark theme with OS theme (diff)
downloadmetube-d708555ef70ba68dfbe57a04c03cab0586b26659.tar.gz
metube-d708555ef70ba68dfbe57a04c03cab0586b26659.tar.bz2
metube-d708555ef70ba68dfbe57a04c03cab0586b26659.zip
Merge pull request #87 from PikuZheng/patch-1 (closes #81)
add a simple dark theme with OS theme
-rw-r--r--ui/src/styles.sass2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/styles.sass b/ui/src/styles.sass
index 5d54ecb..cb052ca 100644
--- a/ui/src/styles.sass
+++ b/ui/src/styles.sass
@@ -1,4 +1,4 @@
/* You can add global styles to this file, and also import other style files */
-
+@media(prefers-color-scheme: dark){html{filter:invert(1) hue-rotate(180deg)};}
/* Importing Bootstrap SCSS file. */
@import '~bootstrap/scss/bootstrap'
bgstack15