Dark mode is a brand-new function introduced in 1.2.0. If you don't like this feature, you can disable it. ## Disable Dark Mode Add `disableDarkMode=true` to the section of `[param]` in your `config.toml`. Then you will not see it. ## Automatically enable Dark Mode Open `/static/js/journey.js`, and you will find this snippet. (Currently at Line 78) ```javascript if (night==""){ if (window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) { //this.toggleDarkMode(); } ``` And remove `//` from `this.toggleDarkMode();`, then your site will enter dark mode automatically, following browser's preference. Feel free to raise an issue if you have some questions. :)