Added dark mode support on the settings page

Updated p, label color for light mode, removed commented code
This commit is contained in:
Maxx Crawford
2020-05-26 22:31:13 -05:00
parent 765a0eb727
commit b47844b43a
3 changed files with 41 additions and 5 deletions
+28
View File
@@ -0,0 +1,28 @@
body {
background: #fff;
color: #202023;
}
h3 {
margin-block-start: 2.5rem;
}
h3:first-of-type {
margin-block-start: 1rem;
}
p,
label {
color: rgb(74, 74, 79);
}
@media (prefers-color-scheme: dark) {
body {
background: #202023;
color: #fff;
}
p,
label {
color: rgb(177, 177, 179);
}
}