From 253812657380ab5e85aa396a81643402a9104b23 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 19:54:39 -0500 Subject: [PATCH] Darker drop shadow on gold labels --- frontends/web/static/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index d665d8e..f1dc039 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -127,11 +127,11 @@ @keyframes gold-shimmer { 0%, 100% { color: #ffe699; - text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4); } 50% { color: #fff2c4; - text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); + text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6); } }