Created
September 5, 2024 19:33
-
-
Save thisisrexa/cb1a489f45a0b87e443ef2845bf55b4d 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
if (localStorage.theme === 'dark') { | |
document.documentElement.classList.add('dark'); | |
} else { | |
document.documentElement.classList.remove('dark'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment