Skip to content

Instantly share code, notes, and snippets.

@lucascantor
Created May 27, 2019 17:12
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 lucascantor/6560b43b6f3da94eb75319040c032132 to your computer and use it in GitHub Desktop.
Save lucascantor/6560b43b6f3da94eb75319040c032132 to your computer and use it in GitHub Desktop.
Add macOS Dark Mode Support to Your Website
@media (prefers-color-scheme: dark) {
body {
color: #ddd;
background-color: #222;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment