Add auto dark theme

This commit is contained in:
Shea Polansky 2020-03-22 13:09:31 -07:00
parent fa8ad522cc
commit 661d436540
4 changed files with 210 additions and 2 deletions

48
assets/css/style-dark.css Normal file
View file

@ -0,0 +1,48 @@
/* General */
body {
background-color: #101010;
color: #8f8f8f;
}
a:link {
color: #8f8f8f;
}
a:visited {
color: #8f8f8f;
}
a:hover {
color: #8f8f8f;
}
a:active {
color: #8f8f8f;
}
#searchBox #searchBoxInput {
color: #8f8f8f;
background-color:#363636;
border: solid 1px #363636;
}
#searchBox #searchBoxInput::placeholder {
color: #363636;
}
#searchResults {
background-color:#363636;
border: solid 1px #363636;
}
#searchResults mark {
background-color: #222020;
}
#tags li a {
background-color: #222020;
}
#contentsList hr.separator {
border: solid 1px #363636;
}