From 2e837f96c548256bce505ed82fa6e9a3f75449b3 Mon Sep 17 00:00:00 2001 From: retoor <retoor@molodetz.nl> Date: Mon, 19 May 2025 01:28:22 +0200 Subject: [PATCH] Update. --- src/snek/templates/sandbox.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snek/templates/sandbox.html b/src/snek/templates/sandbox.html index 0535b9b..d9c4a52 100644 --- a/src/snek/templates/sandbox.html +++ b/src/snek/templates/sandbox.html @@ -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);