mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-01 03:20:30 +00:00
9afe5f81bd
* 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. * Minor link color update
43 lines
593 B
CSS
43 lines
593 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: #bbbbff !important;
|
|
}
|
|
|
|
a:link h3 div {
|
|
color: #4b8eea !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;
|
|
}
|