Bu temanın gündüz ve gece modu için kod bloğu ve varsayılanı gece modunda ve ben bunu gündüz modu yapmak istiyorum. Default: light mod olacak. Nasıl değişiklik yapmalıyım?
<div class="theme-switch-wrapper p-navgroup-link p-navgroup-link--iconic" style="background:none;">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"><i class="gece_temasi" data-xf-init="tooltip" data-original-title="Gece Modu"></i><i class="gunduz_temasi" data-xf-init="tooltip" data-original-title="Gündüz Modu"></i></div>
</label>
<script type="text/javascript">const toggleSwitch=document.querySelector('.theme-switch input[type="checkbox"]'),currentTheme=localStorage.getItem("theme");function switchTheme(e){e.target.checked?(document.documentElement.setAttribute("data-theme","dark"),localStorage.setItem("theme","dark")):(document.documentElement.setAttribute("data-theme","light"),localStorage.setItem("theme","light"))}currentTheme&&(document.documentElement.setAttribute("data-theme",currentTheme),"dark"===currentTheme&&(toggleSwitch.checked=!0)),toggleSwitch.addEventListener("change",switchTheme,!1);</script>
</div>