Created
January 14, 2025 15:17
-
-
Save webgtx/59394e10c40629782ac14185706978ca to your computer and use it in GitHub Desktop.
Dark Mode support for the "Learn Vimscrip The Hard Way"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-color-scheme: dark) { | |
body { | |
background: #202020; | |
color: silver; | |
} | |
a { | |
color: white; | |
} | |
h1,h2,h3 { | |
font-weight: 900; | |
color: gold; | |
} | |
.codehilite, code { | |
background: black; | |
color: green; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment