Skip to content

Instantly share code, notes, and snippets.

@py7hon
Last active December 7, 2020 03:13
Show Gist options
  • Save py7hon/e3088a95909780ff58bdac2215639d22 to your computer and use it in GitHub Desktop.
Save py7hon/e3088a95909780ff58bdac2215639d22 to your computer and use it in GitHub Desktop.
auto set style like a browser style preference
/* 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