Merge pull request #3 from nafunii/dev

feat: add disabled color
This commit is contained in:
Jariel Que 2022-01-10 12:32:26 +08:00 committed by GitHub
commit 0f2b35c93e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -8,6 +8,7 @@ chrome.storage.sync.get('a1', ({ a1 }) => {
document.querySelector(':root').style.setProperty('--color-btn-primary-bg', a1 + "ff", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-bg', a1 + "ff", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-hover-bg', a1 + "c5", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-hover-bg', a1 + "c5", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-active-bg', a1 + "8a", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-active-bg', a1 + "8a", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-disabled-bg', a1 + "54", "important");
document.querySelector('.js-highlight-blob').style.setProperty('fill', a1 + "c5", "important"); document.querySelector('.js-highlight-blob').style.setProperty('fill', a1 + "c5", "important");
document.querySelector('.js-highlight-blob').style.setProperty('stroke', a1 + "ff", "important"); document.querySelector('.js-highlight-blob').style.setProperty('stroke', a1 + "ff", "important");
for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) { for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) {

View file

@ -27,6 +27,7 @@ function setAccent() {
document.querySelector(':root').style.setProperty('--color-btn-primary-bg', a1 + "ff", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-bg', a1 + "ff", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-hover-bg', a1 + "c5", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-hover-bg', a1 + "c5", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-active-bg', a1 + "8a", "important"); document.querySelector(':root').style.setProperty('--color-btn-primary-active-bg', a1 + "8a", "important");
document.querySelector(':root').style.setProperty('--color-btn-primary-disabled-bg', a1 + "54", "important")
document.querySelector('.js-highlight-blob').style.setProperty('fill', a1 + "c5", "important"); document.querySelector('.js-highlight-blob').style.setProperty('fill', a1 + "c5", "important");
document.querySelector('.js-highlight-blob').style.setProperty('stroke', a1 + "ff", "important"); document.querySelector('.js-highlight-blob').style.setProperty('stroke', a1 + "ff", "important");
for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) { for (let i = 0; i < document.querySelectorAll('.Progress-item.rounded-2').length; i++) {