From 85309a2044cff5a457f0980970f4d2ba514e5f82 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 19:33:48 -0500 Subject: [PATCH] Form labels: pale gold with subtle shimmer animation --- frontends/web/static/style.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/frontends/web/static/style.css b/frontends/web/static/style.css index c9c30d8..b259385 100644 --- a/frontends/web/static/style.css +++ b/frontends/web/static/style.css @@ -117,10 +117,17 @@ } /* ---------------------------------------------------------------------------- - Form Labels - Stegasoo Gold + Form Labels - Pale Gold with Shimmer ---------------------------------------------------------------------------- */ .card .form-label { - color: var(--header-gold); + color: #fff8dc; /* Pale cornsilk gold */ + text-shadow: 0 0 8px rgba(254, 232, 98, 0.3); + animation: label-shimmer 3s ease-in-out infinite; +} + +@keyframes label-shimmer { + 0%, 100% { text-shadow: 0 0 8px rgba(254, 232, 98, 0.2); } + 50% { text-shadow: 0 0 12px rgba(254, 232, 98, 0.5), 0 0 4px rgba(255, 255, 255, 0.3); } } /* ----------------------------------------------------------------------------