const body = document.querySelector("body");
function setTheme() {
var theme = body.getAttribute('data-bs-theme');
if (theme === "light") {
document.cookie = "theme=dark; Max-Age=31536000"
body.setAttribute('data-bs-theme', 'dark')
} else {
document.cookie = "theme=light; Max-Age=31536000"
body.setAttribute('data-bs-theme', 'light')
}
}