nelle-observer/frontend/public/scripts/sga.js

26 lines
496 B
JavaScript
Raw Normal View History

2024-09-03 16:58:14 -06:00
function getSGAState() {
2024-08-24 03:26:05 -06:00
if (sessionStorage.getItem("sgaEnabled")) {
2024-09-01 20:50:03 -06:00
enableSGA();
2024-08-24 03:26:05 -06:00
}
}
2024-08-24 03:11:56 -06:00
2024-08-24 00:58:47 -06:00
function enableSGA() {
document.body.style.fontFamily =
2024-09-01 20:50:03 -06:00
"standardGalactic, system-ui";
2024-08-24 03:07:18 -06:00
sessionStorage.setItem("sgaEnabled", 1);
2024-08-24 00:58:47 -06:00
}
function disableSGA() {
document.body.style.fontFamily =
2024-09-01 20:50:03 -06:00
"departure-mono, system-ui";
2024-08-24 03:07:18 -06:00
sessionStorage.removeItem("sgaEnabled");
2024-08-03 01:35:08 -06:00
}
function toggleTheme() {
2024-08-24 03:07:18 -06:00
if (!sessionStorage.getItem("sgaEnabled")) {
enableSGA();
} else {
disableSGA();
2024-08-03 01:35:08 -06:00
}
}