Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Created May 3, 2019 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcelestino/ef4381d04614d28cdf2fcc046680b688 to your computer and use it in GitHub Desktop.
Save tcelestino/ef4381d04614d28cdf2fcc046680b688 to your computer and use it in GitHub Desktop.
dark mode website with CSS
@media (prefers-color-scheme: dark) {
body {
background: black;
color: white;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment