Skip to content

Instantly share code, notes, and snippets.

@thisisrexa
Created September 5, 2024 19:33
Show Gist options
  • Save thisisrexa/cb1a489f45a0b87e443ef2845bf55b4d to your computer and use it in GitHub Desktop.
Save thisisrexa/cb1a489f45a0b87e443ef2845bf55b4d to your computer and use it in GitHub Desktop.
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