okay i got it fucks sake

This commit is contained in:
nelle 2024-08-24 02:00:50 -06:00
parent 5705a15dce
commit 81f9a4b592

View file

@ -1,17 +1,22 @@
function onload() {
if (localStorage.getItem('sgaEnabled')) {
enableSGA()
}
else {
disableSGA()
}
}
function enableSGA() {
document.getElementById("body").style.fontFamily = "standardGalactic, system-ui";
document.getElementById("body").style.fontWeight = "lighter";
localStorage.setItem( 'sgaEnabled', true );
localStorage.setItem( 'sgaEnabled', 1);
console.debug(localStorage.getItem('sgaEnabled'))
}
function disableSGA() {
document.getElementById("body").style.fontFamily = "terminess-nf, system-ui";
localStorage.setItem( 'sgaEnabled', false );
localStorage.removeItem( 'sgaEnabled');
console.debug(localStorage.getItem('sgaEnabled'))
}
@ -19,7 +24,7 @@ function toggleTheme() {
// Obtains an array of all <link>
// elements.
// Select your element using indexing.
if (document.getElementById("body").style.fontFamily !== "standardGalactic, system-ui") {
if (!localStorage.getItem('sgaEnabled')) {
enableSGA()
}
else {