ModelSaber Dark Mode
A quick and easy way to toggle ModelSaber's built-in dark mode without typing the Konami code.
Comes in both userscript and bookmarklet variants.
To toggle, simply click the sun/moon button at the bottom of the page. IF you're using the bookmarklet, the button will be added once you activate the bookmark, and you can toggle modes by clicking the bookmark or icon.
Installation: Userscript (Recommended)
Click the bolded link below to install ModelSaber Dark Mode as a userscript, which automatically adds the toggle button when ModelSaber is loaded.
This requires Violentmonkey, Greasemonkey, or Tampermonkey.
Install Userscript
Installation: Bookmarklet
Drag this link into the bookmarks bar of your browser, or for mobile, edit an existing bookmark and copy and paste the code below.
ModelSaber Dark Mode
javascript:(function(){if(console.log("[Bookmarklet] Loading ModelSaber Dark Mode v1.0.0..."),null!==document.getElementById("msdmToggleButton"))throw toggleDark(),new Error("[Bookmarklet] Already loaded! Toggled.");const toggleButton=document.createElement("a");window.updateIndicator=function(){var o=localStorage.getItem("dark");console.log("[Bookmarklet] Dark mode: "+o),toggleButton.innerHTML="true"==o?"🌚 ":"🌞 "},window.toggleDark=function(){activateCheats(),updateIndicator()},toggleButton.href="javascript:toggleDark();",toggleButton.id="msdmToggleButton",updateIndicator(),footerstart=document.getElementsByClassName("footer")[0].children[0].children[0],footerstart.insertBefore(toggleButton,footerstart.childNodes[0]),console.log("[Bookmarklet] Loaded!");})();