I recently redesigned my website. Here are 2 pictures of how it looked, for reference:

omFzYPaJhb-CmAV7a0zLCSz00Ac31sfbUeV4
roWIFwsXoad3bhcoXrEUXVLarbvX9UB2vbgQ

I designed this website almost 1 year ago, and did many changes along the way, just as we do with any website.

Eventually I grew tired of the design: title is too big, too much space lost instead of showing the content right away, and so on.

I sat down yesterday evening and started re-imagining the website, and I finished the redesign this morning:

WJZ6y3YnXqUNhJ4Ceav4LAAd5jFDc63TmQNw
AwAm1Tjr6abfHw5kPGo-9QGoIweVIOJr4oI5

Much better! Content, the most important thing, is more prominent.

I used a monospaced font (Inconsolata) because as a programming blog it’s a nice one, despite the reduced readability and increased page size due to the font use, because I want that font on my site. I like it better, and since my site is a big part of my day to day activity, I wanted it to be what I want.

I just missed one thing: dark mode. As I was in the process of redesigning, I had the dark mode option in mind.

How did I do it? First, I added the Moon Emoji ? in the sidebar, as a way to let people change the mode from light to dark.

Then, I added a JavaScript snippet that runs when it’s clicked. I just added it to the onclick event handler inline in the HTML, without going fancier:

<p>  <a href="#" onclick="localStorage.setItem('mode', (localStorage.getItem('mode') || 'dark') === 'dark' ? 'light' : 'dark'); localStorage.getItem('mode') === 'dark' ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')" title="Dark/light</p>

This is the JavaScript that runs in the onclick:

localStorage.setItem('mode', (localStorage.getItem('mode') || 'dark') === 'dark' ? 'light' : 'dark'); localStorage.getItem('mode') === 'dark' ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')

It’s a bit convoluted, but basically I check if the mode property in the local storage is ‘dark’ (and defaults to dark if it’s not set yet, using the || operator), and I set the opposite of that in the local storage.

Then I assign the dark class to the body HTML element, so we can use CSS to style the page in dark mode.

Another script runs as soon as the DOM loads, and checks if the mode is dark. If so, it adds the dark class to the body HTML element:

document.addEventListener('DOMContentLoaded', (event) => {  ((localStorage.getItem('mode') || 'dark') === 'dark') ? document.querySelector('body').classList.add('dark') : document.querySelector('body').classList.remove('dark')})

Now if people change modes, their choice will be remembered next time they load the page.

Then I added a lot of CSS instructions to the CSS, all prefixed with body.dark. Like these:

body.dark {  background-color: rgb(30,34,39);  color: #fff;}body.dark code[class*=language-],body.dark table tbody>tr:nth-child(odd)>td,body.dark table tbody>tr:nth-child(odd)>th {  background: #282c34}

Now things should already be working! Here is my site in dark mode:

qLGFEyXtuhIuhkoxWZUHeMxsO979cAzAyZwG
fopjlWMiRnntpt8x-k6DlWrzZKHagsSftcRT

I added the dark class to the body element by default, to make dark mode the default:

<body class="dark"> ... &lt;/body>

Why? First, I liked it better. Then, I made a poll on Twitter and people liked it better.

gl9vci-v5yBlwHtnVsqkgn8EhphopCHUeTY3

But also for a technical reason, a very simple one actually. I don’t store the user choice server-side, so I have no way to know the mode until the local storage is available.

I could do that if the site was generated server-side, but it’s a static site, so I always serve the same page to everyone that requests it. Even if I got a cookie, I have no place to process it (on the flip side this means my pages load faster).

So when someone navigates to another page on my site, or loads the page for the first time on a second visit, I don’t want to show a bright page while I determine the mode. Maybe the visitor is coding in the middle of the night in a dark room.

I’d rather do that in light mode: show a dark page for a couple milliseconds and then turn it white again.

The Media Queries Level 5 specification, still in work in progress, contains a new prefers-color-scheme media feature. Safari Technology Preview on macOS already supports it and we can use it to tell if the user is browsing the page in dark or light mode:

@media (prefers-color-scheme: dark) {  body {    background-color: black;    color: white;  }}@media (prefers-color-scheme: light) {  body {    background-color: white;    color: black;  }}

Hopefully this is going to be stable in Safari soon, and in the future Chrome and Firefox will support it too.

Originally published at flaviocopes.com.