Skip to content

Instantly share code, notes, and snippets.

@adikahorvath
Last active November 14, 2020 14:31
Show Gist options
  • Save adikahorvath/76163540f9ac9dac6c5b2d05f9492880 to your computer and use it in GitHub Desktop.
Save adikahorvath/76163540f9ac9dac6c5b2d05f9492880 to your computer and use it in GitHub Desktop.
dark mode on macOS
@media (prefers-color-scheme: dark) {
html,
body {
background: black;
color: white;
}
}
@media (prefers-color-scheme: light) {
html,
body {
background: white;
color: black;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment