Love it or hate it, it seems that the dark mode fad is here to stay, especially now that more and more devices have OLED screens that display true blacks... which means that these trendsetters might go blind from your site's insanely white background if you're behind the curve and don't offer your own dark mode.
It is possible to use pure CSS3 media queries to do this by reading a user's system and/or browser preference, which might be enough if you're okay with only supporting the latest, cutting-edge browsers and OSes. But if you want your own button on your website that switches back and forth between the two modes, there's no avoiding getting your hands a little dirty with some JavaScript.
I've written a simple implementation below, which...
Defaults to a user's system preference, until they press your toggle to set it themselves
Listens for clicks on any element of your choosing — just set the class to dark-mode-toggle. For example:
Remembers the visitor's preference between visits using the local storage of the their browser (not cookies, please don't use cookies!)
Switches your <body>'s class between light and dark...
...meaning that any CSS selectors beginning with body.dark or body.light will only apply when the respective mode is active. A good place to start is by separating any color rules — your background, text, links, etc. — into a different section of your CSS. Using SASS or SCSS makes this a whole lot easier with nesting but is not required; this was written with a KISS mentality.
A very barebones example is embedded above (view the source here, or open in a new window if your browser is blocking the frame) and you can try it out on this site by clicking the 💡 lightbulb in the upper right corner of this page. You'll notice that the dark theme sticks when refreshing this page, navigating between other pages, or if you were to return to this example weeks from now.
I have cleaned up this code a bit, added a few features, and packaged it as an 📦 NPM module (zero dependencies and still only ~500 bytes minified and gzipped!). Here's a small snippet of the updated method for the browser (pulling the module from UNPKG), but definitely read the readme for much more detail on the API.
<buttonclass="dark-mode-toggle"style="visibility: hidden;">💡 Click to see the light... or not.</button><scriptsrc="https://unpkg.com/dark-mode-switcheroo/dist/dark-mode.min.js"></script><script>window.darkMode.init({toggle:document.querySelector(".dark-mode-toggle"),classes:{light:"light",dark:"dark",},default:"light",storageKey:"dark_mode_pref",onInit:function(toggle){toggle.style.visibility="visible";// toggle appears now that we know JS is enabled
},onChange:function(theme,toggle){console.log("Theme is now "+theme);},});</script>
You can also install it straight from NPM (npm install dark-mode-switcheroo or yarn add dark-mode-switcheroo) and simply include the ESM module, which works great when bundling using Webpack, Browserify, Parcel, esbuild, etc.
1
2
3
4
5
import{init}from"dark-mode-switcheroo";init({// ...same options as browser code.
});
/*! Dark mode switcheroo | MIT License | jrvs.io/darkmode */(function(){// improve variable mangling when minifying
varwin=window;vardoc=win.document;varbody=doc.body;varclasses=body.classList;varstorage=localStorage;// check for preset `dark_mode_pref` preference in local storage
varpref_key='dark_mode_pref';varpref=storage.getItem(pref_key);// change CSS via these <body> classes:
vardark='dark';varlight='light';// which class is <body> set to initially?
vardefault_theme=light;// use an element with class `dark-mode-toggle` to trigger swap when clicked
vartoggle=doc.querySelector('.dark-mode-toggle');// keep track of current state no matter how we got there
varactive=(default_theme===dark);// receives a class name and switches <body> to it
varactivateTheme=function(theme){classes.remove(dark,light);classes.add(theme);active=(theme===dark);};// if user already explicitly toggled in the past, restore their preference
if(pref===dark)activateTheme(dark);if(pref===light)activateTheme(light);// user has never clicked the button, so go by their OS preference until/if they do so
if(!pref){// returns media query selector syntax
varprefers=function(theme){return'(prefers-color-scheme: '+theme+')';};// check for OS dark/light mode preference and switch accordingly
// default to `default_theme` set above if unsupported
if(win.matchMedia(prefers(dark)).matches)activateTheme(dark);elseif(win.matchMedia(prefers(light)).matches)activateTheme(light);elseactivateTheme(default_theme);// real-time switching if supported by OS/browser
win.matchMedia(prefers(dark)).addListener(function(e){if(e.matches)activateTheme(dark);});win.matchMedia(prefers(light)).addListener(function(e){if(e.matches)activateTheme(light);});}// don't freak out if page happens not to have a toggle
if(toggle){// toggle re-appears now that we know user has JS enabled
toggle.style.visibility='visible';// handle toggle click
toggle.addEventListener('click',function(){// switch to the opposite theme & save preference in local storage
if(active){activateTheme(light);storage.setItem(pref_key,light);}else{activateTheme(dark);storage.setItem(pref_key,dark);}},true);}})();
<!doctype html><html><head><style>/* rules that apply globally */body{font-family:system-ui,-apple-system,sans-serif;text-align:center;}a{text-decoration:none;}.dark-mode-toggle{cursor:pointer;padding:1em;/* hide toggle until we're sure user has JS enabled */visibility:hidden;}/* theme-specific rules -- you probably only want color-related stuff here *//* SCSS makes this a whole lot easier by allowing nesting, but is not required */body.light{background-color:#fff;color:#222;}body.lighta{color:#06f;}body.dark{background-color:#222;color:#fff;}body.darka{color:#fe0;}</style></head><bodyclass="light"><h1>Welcome to the dark side 🌓</h1><p><ahref="https://github.com/jakejarvis/dark-mode-example">View the source code.</a></p><buttonclass="dark-mode-toggle">💡 Click to see the light... or not.</button><scriptsrc="dark-mode.min.js"></script></body></html>