dark
This commit is contained in:
parent
dc2ed849a6
commit
1e7c6f8e3b
1 changed files with 12 additions and 2 deletions
12
ui.css
12
ui.css
|
@ -1,5 +1,14 @@
|
|||
:root {
|
||||
--main-width: 85vw;
|
||||
--text-color: #C71585;
|
||||
--bg-color: white;
|
||||
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--bg-color: #212121;
|
||||
}
|
||||
}
|
||||
|
||||
/* large screen */
|
||||
|
@ -13,13 +22,14 @@
|
|||
html {
|
||||
font-family: Noto Sans;
|
||||
scroll-behavior: smooth;
|
||||
color: #C71585;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
body {
|
||||
max-width: var(--main-width);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
background-color: var(--bg-color);
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
|
Loading…
Reference in a new issue