style: Added a light mode colourscheme

This commit is contained in:
Yuki Joou 2023-09-04 11:18:38 +02:00
parent ceb81fe254
commit 75a7672f97

View file

@ -1,4 +1,4 @@
* { :root {
--background-color: #222222; --background-color: #222222;
--foreground-color: #eaeaea; --foreground-color: #eaeaea;
--header-background-color: #444455; --header-background-color: #444455;
@ -7,6 +7,17 @@
--blockquote-bar: #cccccc; --blockquote-bar: #cccccc;
} }
@media (prefers-color-scheme: light) {
:root {
--background-color: #d9d9d9;
--foreground-color: #424242;
--header-background-color: #aeaedb;
--content-background-color: #d7acd7;
--link-color: #5050bf;
--blockquote-bar: #686868;
}
}
body { body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;