Created
September 4, 2021 15:28
-
-
Save ibayazit/87f401a057b94dc40f73e857a79ba329 to your computer and use it in GitHub Desktop.
Light/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
| CSS : | |
| @media (prefers-dark-interface) { | |
| color: white; background: black | |
| } | |
| JS : | |
| if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) { | |
| // dark mode | |
| } | |
| window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => { | |
| const newColorScheme = e.matches ? "dark" : "light"; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment