Last active
December 7, 2020 03:13
-
-
Save py7hon/e3088a95909780ff58bdac2215639d22 to your computer and use it in GitHub Desktop.
auto set style like a browser style preference
This file contains hidden or 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) { | |
@import url("light.css"); | |
} | |
/* Dark mode */ | |
@media (prefers-color-scheme: dark) { | |
@import url("dark.css"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment