Skip to content

Instantly share code, notes, and snippets.

@selfagency
Last active August 1, 2025 15:46
Show Gist options
  • Select an option

  • Save selfagency/9081b43a7d5dc7f53900ec13828509c3 to your computer and use it in GitHub Desktop.

Select an option

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