Skip to content

Instantly share code, notes, and snippets.

@mahammad
Created August 20, 2021 12:21
Show Gist options
  • Save mahammad/cb4f189ea1912d48e6276f1fab5d9b8c to your computer and use it in GitHub Desktop.
Save mahammad/cb4f189ea1912d48e6276f1fab5d9b8c to your computer and use it in GitHub Desktop.
Javascript ile Bilgisayarın Koyu Modu
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