Skip to content

Instantly share code, notes, and snippets.

@ThaddeusJiang
Last active May 22, 2024 02:22
Show Gist options
  • Save ThaddeusJiang/713ee2167865e52836368d6c32f9c1e9 to your computer and use it in GitHub Desktop.
Save ThaddeusJiang/713ee2167865e52836368d6c32f9c1e9 to your computer and use it in GitHub Desktop.
isDark in JS - dark mode
export const isDark = () => window.matchMedia('(prefers-color-scheme: dark)').matches;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment