whoogle-search/app/static/css/dark-theme.css
Ben Busby 6423a629fe Implemented new dark theme
Now uses a dedicated css file for all dark theme color changes, rather
than replacing color codes directly.

Color theme is from discussion in #60.
2020-08-20 13:32:12 -06:00

43 lines
590 B
CSS

html {
background-color: #000 !important;
}
body {
background-color: #222 !important;
}
div {
/*background-color: #111 !important;*/
color: #fff !important;
}
a:visited h3 div {
color: #bbb !important;
}
a:link h3 div {
color: #b2b2ff !important;
}
a:link div {
color: #aaffaa !important;
}
div span {
color: #bbb !important;
}
input {
background-color: #111 !important;
color: #fff !important;
}
#search-bar {
color: #fff !important;
background-color: #000 !important;
}
.search-container {
background-color: #000 !important;
}