How to detect dark mode with JavaScript
Aug 05, 2020 · by Tim KamaninThe dark mode is all the rage now, here's how you can detect if a user has dark mode enabled:
const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
And that's pretty much it, simple and efficient.