Skip to content

Instantly share code, notes, and snippets.

@webgtx
Created January 14, 2025 15:17
Show Gist options
  • Save webgtx/59394e10c40629782ac14185706978ca to your computer and use it in GitHub Desktop.
Save webgtx/59394e10c40629782ac14185706978ca to your computer and use it in GitHub Desktop.
Dark Mode support for the "Learn Vimscrip The Hard Way"
@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