Skip to content

Instantly share code, notes, and snippets.

@ibayazit
Created September 4, 2021 15:28
Show Gist options
  • Select an option

  • Save ibayazit/87f401a057b94dc40f73e857a79ba329 to your computer and use it in GitHub Desktop.

Select an option

Save ibayazit/87f401a057b94dc40f73e857a79ba329 to your computer and use it in GitHub Desktop.
Light/Dark Mode
CSS :
@media (prefers-dark-interface) {
color: white; background: black
}
JS :
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