Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active July 25, 2022 06:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryceadams/c998254dcb8a5a11ef7d5c1879e519f8 to your computer and use it in GitHub Desktop.
Save bryceadams/c998254dcb8a5a11ef7d5c1879e519f8 to your computer and use it in GitHub Desktop.
if (color_mode == 'dark') {
document.body.classList.add('dark');
document.documentElement.classList.add('dark');
} else {
document.body.classList.remove('dark');
document.documentElement.classList.remove('dark');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment