Created
July 31, 2020 09:49
-
-
Save vaibhavgehani/688317644bc879d5e051bb251a3b8ce6 to your computer and use it in GitHub Desktop.
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
| 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