Skip to content
Advertisement

How to detect prefers-color-scheme change in javascript?

I can use window.matchMedia to detect whether user is in dark mode, but how to listen dark mode change event?

Is there any API like:

JavaScript

Advertisement

Answer

You can add an event-listener with callback on the MediaQueryList returned by Window.matchMedia():

JavaScript

Note: There are two method versions to register an event-listener:

  1. the recommended addEventListener("change", listener)) which allows more fine-grained assignment to event-types
  2. the deprecated addListener(listener)

See also


Thanks to lukaszpolowczyk for pointing out that method addListener(listener) has become deprecated and to AsukaSong for initiating a complete rewrite of this answer.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement