Merge pull request #6 from nafunii/dev

improve: code refactoring
This commit is contained in:
Jariel Que 2022-01-11 07:26:28 +08:00 committed by GitHub
commit 17388ec4c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,14 @@
chrome.storage.sync.get('a1', ({ a1 }) => {
updateAccents(a1);
// run a second check to update missing accents due to limitations
setTimeout(function() {
updateAccents(a1);
}, 1000);
});
function updateAccents(a1) {
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L4-bg', a1 + "ff", "important");
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L3-bg', a1 + "c5", "important");
document.querySelector(':root').style.setProperty('--color-calendar-graph-day-L2-bg', a1 + "8a", "important");
@ -15,5 +24,4 @@ chrome.storage.sync.get('a1', ({ a1 }) => {
for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) {
document.querySelectorAll('.Progress-item.rounded-2')[i].style.setProperty('background-color', a1 + "ff", "important");
}
}, 1000);
});
}