Created
June 16, 2020 19:33
-
-
Save ThisIsNoahEvans/4f016939b5488604bd03252595388888 to your computer and use it in GitHub Desktop.
System Dark / Light mode CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Light mode */ | |
@media (prefers-color-scheme: light) { | |
/* theme */ | |
} | |
/* Dark mode */ | |
@media (prefers-color-scheme: dark) { | |
/* theme */ | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment