Skip to content

Instantly share code, notes, and snippets.

@jasonlutterloh
Created April 22, 2020 00:06
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 jasonlutterloh/f0a3524dddc05ebc981f0d7224b8977c to your computer and use it in GitHub Desktop.
Save jasonlutterloh/f0a3524dddc05ebc981f0d7224b8977c to your computer and use it in GitHub Desktop.
CSS Media Query for Dark Mode
body {
background: #fff;
color: #222;
}
@media (prefers-color-scheme: dark) {
body {
background: #222;
color: #efefef;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment