The 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.
Hey, if you've found this useful, please share the post to help other folks find it: