mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-05-28 00:21:57 +02:00
29 lines
520 B
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;
|
|
}
|
|
}
|