Last active
July 11, 2021 00:56
-
-
Save selfagency/9081b43a7d5dc7f53900ec13828509c3 to your computer and use it in GitHub Desktop.
[easy css dark mode]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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