window.matchMedia('(prefers-color-scheme: dark)') work in Edge when I change the browser appearance color? #303
Closed
Description
window.matchMedia('(prefers-color-scheme: dark)').addEventListener will work in Edge when I change the browser appearance color,but it does not work in Google Chrome when I change the browser appearance.
code
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', function () {
console.log('change')
})
the chrome issue link:https://issues.chromium.org/issues/40642550