Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can I default this to dark mode? & also default to list mode? #83

Open
TomLewis opened this issue Oct 18, 2021 · 1 comment
Open

Comments

@TomLewis
Copy link

Sorry I'm brand new to Hugo (And static generators as a whole!) and I'm starting with this theme as I love the look of it!

Is there a setting/config option to default to the dark mode & set the default posts view to list mode?

@SleepyCofe
Copy link

You can change the default mode by editing assets/js/initColors.js

function initColors(){
    if (localStorage.getItem("isLight") === null) {
        localStorage.setItem("isLight", 'true'); <- change to false for dark mode by default
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants