Created
October 29, 2022 14:43
-
-
Save andresgcarmona/56f0c64fdccb3e782fc8398f0fe96eee to your computer and use it in GitHub Desktop.
Watch media changes
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
window.matchMedia('(prefers-color-scheme: dark)') | |
.addEventListener('change',({ matches }) => { | |
if (matches) { | |
console.log("change to dark mode!") | |
} else { | |
console.log("change to light mode!") | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment