This commit is contained in:
retoor 2025-05-19 01:13:18 +02:00
parent db5431d77d
commit 8a85cd7990

View File

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