I’m using the latest version of Ghost and my site is located here: https://www.thriftythoughts.io/
The default Dawn theme gives users the ability to toggle the theme between light mode and dark mode as well as a system theme which grabs your preference from your machine. I am looking to essentially remove all of these options and only provide dark mode to users but I’ve been having trouble. I’ve tried editing the footer.hbs file as well as the main.js file to no avail. In particular there is a js switch function which looks like it might do the trick but that didn’t work either. I tried changing to the following where I set the second line of every case to “dark()”
switch (localStorage.getItem('dawn_theme')) {
case 'dark':
dark();
break;
case 'light':
dark();
break;
default:
dark();
break;
}