invidious/assets/css/darktheme.css

44 lines
651 B
CSS
Raw Normal View History

/*
* Dark theme
* Same as (prefers-color-scheme: dark) in default.css
*/
.dark-theme a:hover,
.dark-theme a:active {
2018-08-03 23:17:19 +00:00
color: rgb(0, 182, 240);
2018-04-14 02:32:14 +00:00
}
.dark-theme a {
2018-04-17 00:05:45 +00:00
color: #a0a0a0;
2018-04-14 02:32:14 +00:00
text-decoration: none;
}
body.dark-theme {
2018-08-03 23:26:12 +00:00
background-color: rgba(35, 35, 35, 1);
2018-04-14 02:32:14 +00:00
color: #f0f0f0;
}
.dark-theme .pure-form legend {
2018-04-14 02:32:14 +00:00
color: #f0f0f0;
}
.dark-theme .pure-menu-heading {
2018-04-14 02:32:14 +00:00
color: #f0f0f0;
}
.dark-theme input,
.dark-theme select,
.dark-theme textarea {
2018-08-03 23:26:12 +00:00
color: rgba(35, 35, 35, 1);
2018-07-16 16:24:24 +00:00
}
.dark-theme .pure-form input[type="file"] {
color: #f0f0f0;
}
.dark-theme .navbar > .searchbar input {
background-color: inherit;
color: inherit;
}