Skip to content

Instantly share code, notes, and snippets.

@yue1123
Last active August 31, 2025 16:35
Show Gist options
  • Select an option

  • Save yue1123/4ba8d32734985ca79738d47344ee5a7f to your computer and use it in GitHub Desktop.

Select an option

Save yue1123/4ba8d32734985ca79738d47344ee5a7f to your computer and use it in GitHub Desktop.
theme init
(function () {
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
const setting = localStorage.getItem('color-schema') || 'auto'
if (setting === 'dark' || (prefersDark && setting !== 'light'))
document.documentElement.classList.toggle('dark', true)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment