dark mode

This commit is contained in:
rimu 2024-01-06 11:31:45 +13:00
parent 20f5c7b7f8
commit fb75f9901f
2 changed files with 32 additions and 0 deletions

View file

@ -600,6 +600,20 @@ nav.navbar {
.main_pane, .card {
background-color: #eee;
}
.btn-outline-secondary {
border-color: #eee;
color: #eee;
}
.main_pane .btn-outline-secondary {
border-color: #777;
color: #777;
}
footer a {
color: #eee;
}
}
/*# sourceMappingURL=styles.css.map */

View file

@ -264,6 +264,7 @@ nav.navbar {
}
@media (prefers-color-scheme: dark) {
body {
background-color: $dark-grey;
}
@ -276,4 +277,21 @@ nav.navbar {
background-color: #eee;
}
.btn-outline-secondary {
border-color: #eee;
color: #eee;
}
.main_pane {
.btn-outline-secondary {
border-color: $dark-grey;
color: $dark-grey;
}
}
footer {
a {
color: #eee;
}
}
}