style: Added a light mode colourscheme
This commit is contained in:
parent
ceb81fe254
commit
75a7672f97
1 changed files with 12 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue