main #8
1 changed files with 11 additions and 6 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue