Files
macvim-mirror/stylesheets/stylesheet_dark.css

29 lines
520 B
CSS

/*
* Custom modified stylesheet to support dark mode as upstream doesn't support
* it.
*/
@supports (color-scheme: light dark) {
:root {
color-scheme: light dark;
}
}
@supports not (color-scheme: light dark) {
@media (prefers-color-scheme: dark) {
body {
background-color: #1E1E1E;
}
}
}
@media (prefers-color-scheme: dark) {
a {
color: #2583E2;
}
body {
color: #9F938E;
}
.site-footer-credits {
color: #7E6E67;
}
}