Skip to content

Commit

Permalink
2.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fisheva committed Dec 15, 2024
1 parent 863f7d3 commit 478bb63
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion html/index copy.html
Original file line number Diff line number Diff line change
Expand Up @@ -12848,7 +12848,7 @@
}
};

let json = {
let output = {
'Eva-Light':{},
'Eva-Light-Italic':{},
'Eva-Light-Bold':{},
Expand All @@ -12858,4 +12858,18 @@
'Eva-Dark-Bold':{},
'Eva-Dark-Italic-Bold':{},
};

for(let i in output) {
if(i.indexOf('Light') > -1) {
output[i] = {...light};
} else {
output[i] = {...dark};
}


}

function scopes2token(){

}
</script>

0 comments on commit 478bb63

Please sign in to comment.