document.getElementById("lightbtn").onclick = function () { swapTheme("light.css"); };
document.getElementById("darkbtn") .onclick = function () { swapTheme("dark.css"); };
function swapTheme(css) {
document.getElementById("pagestyle").setAttribute("href", css);
}