This commit is contained in:
retoor 2025-05-19 01:28:22 +02:00
parent 00fce6bd68
commit 2e837f96c5

View File

@ -39,7 +39,7 @@ function glowCSSVariable(varName, glowColor, duration = 500) {
const root = document.documentElement;
//igetComputedStyle(root).getPropertyValue(varName).trim();
glowColor = lightenColor(glowColor, 40);
glowColor = lightenColor(glowColor, 80);
root.style.setProperty(varName, glowColor);
setTimeout(() => {
root.style.setProperty(varName, originalColor);