Note: This post was originally written by Jannik Buhr and copied here on March 16, 2021 - see the original post here for a potentially updated version.
There are many motivations to adding a dark mode to your site. I just like it, when things look consistent. So I also want my site to reflect that. But because at the same time I am also not very good at making things look consistent, which is why I mostly outsource design choices as much as I can. Here, for example, this means that I took the color values for the dark theme from the amazing nord color palette.
But let’s get into the practical side! How do we add a dark theme to complement our light theme to our distill site?
Adding the button, css and java script
First, we want a button that a user can click on to change the theme. I opted for the adjust button from Font Awesome. There is not much to do here, because those are already available in distill. Open up your _site.yml file and add an icon to the navbar:
navbar:
right:
- icon: fas fa-adjust
While we are in this file, let’s also add the includes for the html file which will make the button work:
Note: I am omitting all the other things in our .yml file here and only show, what is being added. But I include the indentation-levels above the thing being added to show where to put it.
Unfortunately, the only way I found to refer to the darkmode toggle icon in the navbar was by class name. I could not find a way to give it an id from _site.yml. However, this should be fine because the navbar is usually the first thing on the page and the script refers to the first element of class fas fa-adjust that it can find. It is also important to have this script be included after the body, so that the rest of the site can load first before the script tries to find the button. Typically you would do this using a script file and sourcing it with the option defer, but sourcing a script file doesn’t work here due to the way distill changes file-path’s between top-level sites and posts. This is why the complete script is in the html here. The script adds a class .darkmode to the html body (and removes it when toggled off). This choice is first based on browser preferences and then saved to local storage.
The last thing to modify is our theme.css to make use of this .darkmode class. For each thing we want to change about our theme when it get’s dark, we take the corresponding class and the darkmode class and add our styling e.g.
If you see mistakes or want to suggest changes, please create an issue on the source repository.
Reuse
Text and figures are licensed under Creative Commons Attribution CC BY-SA 4.0. Source code is available at https://github.com/jhelvy/distillery, unless otherwise noted. The figures that have been reused from other sources don't fall under this license and can be recognized by a note in their caption: "Figure from ...".
Citation
For attribution, please cite this work as
Buhr (2021, March 12). The Distillery: Making a Darkmode for your distill site. Retrieved from https://distillery.rbind.io/posts/2021-03-12-making-a-darkmode-for-your-distill-site/
BibTeX citation
@misc{buhr2021making,
author = {Buhr, Jannik},
title = {The Distillery: Making a Darkmode for your distill site},
url = {https://distillery.rbind.io/posts/2021-03-12-making-a-darkmode-for-your-distill-site/},
year = {2021}
}