Files
metube/ui/src/styles.sass
PikuZheng b977252338 add a simple dark theme with OS theme
It will invert the color to make it look dark if your OS selects dark mode. (eg. Windows 10 Settings - Personalization - Colors - App Mode - Dark
#81
2021-12-11 10:49:54 +08:00

5 lines
232 B
Sass

/* 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'