Skip to content

Instantly share code, notes, and snippets.

@andresgcarmona
Created October 29, 2022 14:43
Show Gist options
  • Save andresgcarmona/56f0c64fdccb3e782fc8398f0fe96eee to your computer and use it in GitHub Desktop.
Save andresgcarmona/56f0c64fdccb3e782fc8398f0fe96eee to your computer and use it in GitHub Desktop.
Watch media changes
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