update theme dark mode
This commit is contained in:
parent
f2f2797921
commit
21b0373131
1 changed files with 12 additions and 1 deletions
|
@ -8,6 +8,17 @@ body {
|
|||
--theme-primary: white;
|
||||
--theme-secondary: black;
|
||||
max-width: 100vw;
|
||||
background-color: var(--theme-primary);
|
||||
color: var(--theme-secondary);
|
||||
}
|
||||
|
||||
@media screen and (prefers-color-scheme:dark) {
|
||||
body {
|
||||
--theme-accent: rgb(255, 226, 158);
|
||||
--theme-accent2: rgb(77, 3, 3);
|
||||
--theme-primary: rgb(23, 23, 23);
|
||||
--theme-secondary: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
|
||||
header {
|
||||
|
@ -112,7 +123,7 @@ footer {
|
|||
}
|
||||
|
||||
footer a {
|
||||
color: white;
|
||||
color: var(--theme-accent2);
|
||||
}
|
||||
|
||||
hr {
|
||||
|
|
Loading…
Reference in a new issue