Skip to content

Instantly share code, notes, and snippets.

@selfagency
Last active July 11, 2021 00:56
Show Gist options
  • Save selfagency/9081b43a7d5dc7f53900ec13828509c3 to your computer and use it in GitHub Desktop.
Save selfagency/9081b43a7d5dc7f53900ec13828509c3 to your computer and use it in GitHub Desktop.
[easy css dark mode]
/* Text and background color for light mode */
body {
color: #333;
}
/* Text and background color for dark mode */
@media (prefers-color-scheme: dark) {
body {
color: #ddd;
background-color: #222;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment