Skip to content

Instantly share code, notes, and snippets.

@juji
Created April 27, 2024 18:03
Show Gist options
  • Save juji/a5fa2590abe52a2899987dc960959d21 to your computer and use it in GitHub Desktop.
Save juji/a5fa2590abe52a2899987dc960959d21 to your computer and use it in GitHub Desktop.
Detect dark mode
((w,d) => {
w && d &&
w.matchMedia('(prefers-color-scheme:dark)')?.matches &&
d.getElementsByTagName('html')[0]?.classList.add('dark')
})(window,document)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment