bootstrap-sona 1.0.1

A simple bootstrap 5 .well-known/fursona viewer
1
2
3
4
5
6
7
8
9
10
11
12
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')
	}

}