commit: ec2afce97e4fa769ccf1088ae19b95fb94510930
parent e2af986323d82ebd15d7a303ed40cc033d933479
Author: Henry Jameson <me@hjkos.com>
Date: Tue, 27 Feb 2024 22:02:44 +0200
improve performance a bit and use better "worst case" color
Diffstat:
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/services/style_setter/style_setter.js b/src/services/style_setter/style_setter.js
@@ -15,7 +15,8 @@ export const applyTheme = async (input) => {
extraRules = convertTheme2To3(theme)
}
- const themes3 = init(extraRules, '#FFFFFF')
+ // Assuming that "worst case scenario background" is panel background since it's the most likely one
+ const themes3 = init(extraRules, extraRules[0].directives['--bg'].split('|')[1].trim())
const head = document.head
const body = document.body
body.classList.add('hidden')
@@ -54,7 +55,7 @@ export const applyTheme = async (input) => {
styleSheet.insertRule(rule, 'index-max')
})
})
- }, 50)
+ }, 200)
})
return Promise.resolve()