From b9d0fac535fcafe9e3653ba8436e47a0a8b0621e Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 20:51:14 -0500 Subject: [PATCH] Homepage icons: stronger shadow and dark outline for pop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added dark outline via text-shadow and increased drop-shadow opacity to make white icons stand out against dark background. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontends/web/templates/index.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/frontends/web/templates/index.html b/frontends/web/templates/index.html index 0c4aec7..893a1ec 100644 --- a/frontends/web/templates/index.html +++ b/frontends/web/templates/index.html @@ -16,7 +16,12 @@ font-size: 3.5rem; color: #fff; margin-bottom: 0.5rem; - filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)); + filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)); + text-shadow: + -1px -1px 0 rgba(0, 0, 0, 0.3), + 1px -1px 0 rgba(0, 0, 0, 0.3), + -1px 1px 0 rgba(0, 0, 0, 0.3), + 1px 1px 0 rgba(0, 0, 0, 0.3); transition: all 0.15s ease; } .home-icon span {