2

I wonder if it is possible to deactivate the dark mode / force activate the bright mode on MacOS Safari independently. Even if the system is currently set to auto or dark mode.

-> From Safari's system settings; not from a website's code.

I prefer using the system's dark mode but I sometimes need to debug my apps in Safari with the normal color scheme.

ddhille
  • 117
  • 1
  • 9
  • Theoretically a website should check it with https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme - In chrome I know a way to change this on the fly per website, not sure how to cope with this in safari – Julian Kleine Jan 05 '21 at 23:41
  • 1
    For example for chrome https://stackoverflow.com/questions/57606960/how-can-i-emulate-prefers-color-scheme-media-query-in-chrome – Julian Kleine Jan 05 '21 at 23:44

1 Answers1

5

Too easy. The Elements-tab in Safari's Dev tools provides a funny button for toggling the color scheme:

enter image description here

Thanks @JulianKleine for pointing me in the right direction!

ddhille
  • 117
  • 1
  • 9