Created
August 20, 2021 12:21
-
-
Save mahammad/cb4f189ea1912d48e6276f1fab5d9b8c to your computer and use it in GitHub Desktop.
Javascript ile Bilgisayarın Koyu Modu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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