From 5c0a5bbba76d7841616c3306b0f057bfed393a02 Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 20:49:59 -0500 Subject: [PATCH] Homepage icons: gold on hover like tools page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Icons and labels turn gold on hover, matching the tools page button styling. Combined with lift effect for visual pop. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontends/web/templates/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontends/web/templates/index.html b/frontends/web/templates/index.html index 1e85f65..0c4aec7 100644 --- a/frontends/web/templates/index.html +++ b/frontends/web/templates/index.html @@ -29,12 +29,14 @@ transition: all 0.15s ease; } .home-icon:hover i { + color: #ffe699; transform: translateY(-4px); filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.5)); } .home-icon:hover span { opacity: 1; transform: translateY(0); + color: #ffe699; }