dark mode + a bit more polish

This commit is contained in:
nick comer
2024-05-01 21:54:52 -04:00
parent 92e99149c1
commit b826ce9c63
2 changed files with 97 additions and 18 deletions

View File

@@ -140,6 +140,33 @@ body {
background-color: white;
}
@media (prefers-color-scheme: dark) {
/* Dark Mode styles go here. */
.ht-tab:hover {
background-color: #efefef;
}
.ht-tab-location {
color: #e9e9e9;
}
@media (prefers-color-scheme: dark) {
html {
background-color: black;
}
body {
background-color: #2b2b2b;
color: #f2f2f2;
}
.ht-search-wrapper .ht-search-input {
background-color: #2b2b2b;
}
.ht-tab-location {
color: #e9e9e9;
}
.ht-tab:hover {
background-color: #4e4e4e;
}
}