I like this theme a lot, but I would like dark mode to be the default.
Not sure how to do that.
Any help would be greatly appreciated.
I like this theme a lot, but I would like dark mode to be the default.
Not sure how to do that.
Any help would be greatly appreciated.
You might like this solution: Disable Dark Mode completely in Casper with code injection - #16 by minimaluminium
Hey @shodandad, you can add this script in Code injection > Site Header
to make the dark theme default. Alto uses a localStorage item with the key alto_dark
to toggle the dark mode, and this script sets the value true
by default.
<script>
localStorage.setItem('alto_dark', 'true');
</script>