Fastbyte01/KeepIt

dark-theme as default?

htothek opened this issue · 1 comments

Hello -- Great theme by the way, I love it!

Is it possibly to make the initial theme the "dark-theme"? I've tried to edit the baseof.html and set but it doesn't seem to stick.

Any help would be appreciated. Thank you again for all your hard work!

The work around I use for this is:

In themes/keepit/assets/js/main.js: (Line 32 -33, add under the line that says _Blog.toggleTheme = function() { )

if(!window.localStorage.getItem('theme')){
	window.localStorage.setItem('theme', 'dark');
}