Hi @arminunruh / @mariusjopen
I've added this piece of script to toggle dark-mode in custom html/css :
<script>
let element = document.getElementById("circle");
element.ondblclick = darkmode;
function darkmode() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
It works fine the first time I load the page, but once I visit a new page and come back to my first page it does not work anymore.
Could you help me out with this?
Thanks! :)
Joseph