website/themes/fzmin2/static/js/themes.js
fzorb 42dd5380e3
Some checks failed
pipeline / deploy-job (push) Failing after 3m37s
Update themes/fzmin2/static/js/themes.js
2025-01-16 15:12:22 +02:00

19 lines
641 B
JavaScript

const themes = ['default', 'xmin', 'winter', '1337', 'red', 'red2']
themes.forEach(theme => {
document.getElementById("themes").insertAdjacentHTML('afterbegin', "<option id='" + theme + "'>" + theme + "</option>" )
});
function changeClientTheme(theme) {
let link = document.createElement("link");
link.rel = "stylesheet";
link.href = "/css/themes/" + theme + ".css";
document.head.appendChild(link);
}
function changetheme() {
localStorage.setItem("theme", document.getElementById('themes').value);
changeClientTheme(document.getElementById('themes').value)
}
changeClientTheme(localStorage.getItem('theme'))