Added dark mode support on the settings page
Updated p, label color for light mode, removed commented code
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user