matchMedia().addListener marked as deprecated, addEventListener equivalent?
From the doc – https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/addListener A function or function reference representing the callback function you want to run when the media query status changes. It should be change event. https://developer.mozilla.org/en-US/docs/Web/API/MediaQueryList/onchange. const mql = window.matchMedia(“(prefers-color-scheme: dark)”); mql.addEventListener(“change”, () => { this.checkNative(); });