Skip to content

Instantly share code, notes, and snippets.

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 AliwerErgashev/ceea47e92587d72d4724a46881f70c9f to your computer and use it in GitHub Desktop.
Save AliwerErgashev/ceea47e92587d72d4724a46881f70c9f to your computer and use it in GitHub Desktop.
detect dark mode
if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
// dark mode
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', e => {
const newColorScheme = e.matches ? "dark" : "light";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment