Skip to content

Instantly share code, notes, and snippets.

@noestreich
Created October 22, 2019 06:12
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Dark mode in a website with CSS
@media (prefers-color-scheme: dark) {
body {
background-color: #444;
color: #e4e4e4;
}
a {
color: #e39777;
}
img {
filter: grayscale(30%);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment