limepot-xyz/public/scripts/galactic-font.js

11 lines
398 B
JavaScript
Raw Normal View History

2024-07-01 14:41:14 -06:00
function toggleTheme() {
// Obtains an array of all <link>
// elements.
// Select your element using indexing.
2024-07-03 18:50:21 -06:00
if (document.getElementById("body").style.fontFamily !== "standardGalactic") {
document.getElementById("body").style.fontFamily = "standardGalactic";
}
else {
document.getElementById("body").style.fontFamily = "system-ui, sans-serif";
}
2024-07-01 14:41:14 -06:00
}