- Updated dark theme (#121) - Dark theme is no longer the previous high contrast "white on black" color scheme - New configuration settings - Split interface and result language config (#89) - Added option for using privacy respecting result alternatives (#106) - `youtube.com` -> `invidiou.site` - `twitter.com` -> `nitter.net` - `instagram.com` -> `bibliogram.art` - Improved search suggestion arrow key navigation behavior (#115) - Added repl.it deployment (#114) - Improved ad filtering for non-English results (f7380ae15d
) - Split interface and result language config (#89) - New config option: privacy respecting result alternatives (#106) - Updated search suggestion behavior (#115) - Minor project improvements and refactoring: - Added footer to results UI - Updated opensearch template - Various bug fixes, including: - Fixed pipx run command (#118) - Fixed browser autocomplete (#128) - Fixed missing autofocus on search field in Firefox (dfb1e81fa1
)
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;
|
|
}
|