Skip to content

Instantly share code, notes, and snippets.

@Laim
Created December 29, 2019 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Laim/6d153f9ccd2600821253b9286b611397 to your computer and use it in GitHub Desktop.
Save Laim/6d153f9ccd2600821253b9286b611397 to your computer and use it in GitHub Desktop.
Dark Mode based on System
body {
font-family: monospace;
background-color: #1d1f21;
color: #FFF;
}
a:link {
text-decoration:none;
color:#CC3300;
}
a:visited {
color:#009900;
}
a:hover {
color:#0066FF;
}
a:active {
color:#0066FF;
}
@media (prefers-color-scheme: light) {
body {
background-color: whitesmoke;
color: #1d1f21;
}
a:hover {
color:#1d1f21;
}
a:active {
color:#1d1f21;
}
}
hr { background-color: #41454a; height: 1px; border: 0; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment