Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created July 31, 2020 09:49
Show Gist options
  • Select an option

  • Save vaibhavgehani/688317644bc879d5e051bb251a3b8ce6 to your computer and use it in GitHub Desktop.

Select an option

Save vaibhavgehani/688317644bc879d5e051bb251a3b8ce6 to your computer and use it in GitHub Desktop.
onChange(event) {
let darkMode = window.matchMedia("(prefers-color-scheme: dark)");
darkMode.addListener(this.colorTest);
if(event.detail.checked){
document.body.setAttribute('data-theme', 'dark');
}
else{
document.body.setAttribute('data-theme', 'light');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment