Some checks failed
Build and Deploy Documentation / build-and-deploy (push) Failing after 5s
14 lines
397 B
JavaScript
14 lines
397 B
JavaScript
const palettes = ["blue", "purple", "green"];
|
|
let current = 0;
|
|
|
|
function switchColor() {
|
|
current = (current + 1) % palettes.length;
|
|
const color = palettes[current];
|
|
document.documentElement.setAttribute("data-md-color-scheme", color);
|
|
}
|
|
|
|
window.addEventListener("DOMContentLoaded", () => {
|
|
const btn = document.getElementById("color-toggle-btn");
|
|
if (btn) btn.onclick = switchColor;
|
|
});
|