Yes it would be nice, but also you can just get a darkmode extension for whatever site you're using. I use DarkReader on chrome and it works miracles.
yeah it's cool but it'd be nice to have a built in dark mode so that it fixes the colors up top. (i just dont wanna install an extension i don't need)
Completely fair. I do think there should be one internally made already. Was more of an alternative in the mean time!!!
please please please lpease pleasep leaes please please please please make rthis a thing im losing eye sight when using this website and using it after sobbing my eyes out makes it even worse LOOLL
Dark mode is literally just a toggle between 2 distinct CSS styling systems using JS. In modern site styling it's extremely easy to implement, although i do not know JS structuring here, it might be tricky if something is already dynamically altering css. for example my project. <select id="dark-mode" onchange="setDarkMode(this.value)"> <option value="off">Off</option> <option value="on">On</option> <option value="system">System</option> in html, function setDarkMode(mode, skipSaving = false) { if (mode === 'system') { const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; document.body.classList.toggle('dark-mode', prefersDark); updateDarkModeToggleText('system'); } else { document.body.classList.toggle('dark-mode', mode === 'on'); updateDarkModeToggleText(mode); } if (!skipSaving) { saveSettings({ darkMode: mode }); } } in js (system requires event listener), and body.dark-mode { background-color: #1e1e1e; color: #ffffff; } body.dark-mode .buttons button { background-color: #444; color: #ffffff; } etc in css.
seems excessive to rewrite the theme system when there is already an extensive xenforo theme system - Style Chooser | Skyblock Official Site