UNPKG

@yuebai008/cli

Version:

Command line interface for rapid qg-minigame development

1 lines 667 B
const DARK_THEME_CLASS="-theme-with-dark-background";function toggleDarkMode(){document.body.classList.toggle(DARK_THEME_CLASS)}export function init(){window.matchMedia("(prefers-color-scheme: dark)").matches&&document.body.classList.add(DARK_THEME_CLASS),window.addEventListener("load",(()=>{const e=document.createElement("button");e.innerText="Toggle light/dark mode",e.className="component-docs-ui",e.style.position="fixed",e.style.bottom="10px",e.style.right="10px",e.style.width="200px",e.style.fontSize="16px",e.style.padding="5px",e.style.cursor="pointer",e.addEventListener("click",(e=>{e.preventDefault(),toggleDarkMode()})),document.body.appendChild(e)}))}