From 581a6edfd9ace8baf333f1d2193da1bebe2b770a Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Sun, 15 Feb 2026 03:21:18 +0000 Subject: [PATCH] Auto commit: 2026-02-15T03:21:18.566Z --- index.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.php b/index.php index 3334773..b72e614 100644 --- a/index.php +++ b/index.php @@ -801,6 +801,13 @@ $liveIndex = get_live_index($schedule); void appContainer.offsetWidth; // Trigger reflow appContainer.classList.add("shake"); + // Randomize wave color on drop + const r = Math.floor(Math.random() * 256); + const g = Math.floor(Math.random() * 256); + const b = Math.floor(Math.random() * 256); + waveColor = `rgba(${r}, ${g}, ${b}, 0.8)`; + waveGlow = `rgba(${r}, ${g}, ${b}, 0.4)`; + setTimeout(() => { flashEl.style.transition = "opacity 0.4s ease-out"; flashEl.style.opacity = "0";