From 6c2b89752200b7270fc7c7b3e0979458293ab629 Mon Sep 17 00:00:00 2001 From: RolimirKal Date: Wed, 5 Nov 2025 23:18:56 -0500 Subject: [PATCH] -red progress bar --- timer.css | 3 ++- timer.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/timer.css b/timer.css index c6ee88e..c6381f3 100644 --- a/timer.css +++ b/timer.css @@ -173,7 +173,7 @@ p { #GoalProgressBar { width: 110%; - background-color: #55CBFF; + background-color: #FC98B3; transform: translate(-5%, 0%) scale(1, 1.5); } @@ -181,6 +181,7 @@ p { transform: translate(0%, -8%) scale(1); text-align: center; margin-top: -19%; + color: #404145; } #TopUsers { diff --git a/timer.js b/timer.js index edcb952..b886213 100644 --- a/timer.js +++ b/timer.js @@ -279,9 +279,9 @@ class TimerRenderer { // Update the progress bar if (current / required > .02) { - this.goal_bar.style.maskImage = `linear-gradient(to right, #55CBFF 0%, #55CBFF ${((current / required) - .02) * 100}%, transparent ${(current / required) * 100}%)`; + this.goal_bar.style.maskImage = `linear-gradient(to right, #FC98B3 0%, #FC98B3 ${((current / required) - .02) * 100}%, transparent ${(current / required) * 100}%)`; } else { - this.goal_bar.style.maskImage = `linear-gradient(to right, #55CBFF 0%, transparent .01%)`; + this.goal_bar.style.maskImage = `linear-gradient(to right, #FC98B3 0%, transparent .01%)`; } }