Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created March 5, 2020 02:18
Show Gist options
  • Save lenivene/e737ec39171a2136f422cdf053f7fefd to your computer and use it in GitHub Desktop.
Save lenivene/e737ec39171a2136f422cdf053f7fefd to your computer and use it in GitHub Desktop.
Auto switch dark mode system
body{
@media (prefers-color-scheme: dark) {
color: white;
background-color: black;
}
@media (prefers-color-scheme: light) {
color: black;
background-color: white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment