From d517a4dc8bc0dda0acbf40f4eabc58d719d092af Mon Sep 17 00:00:00 2001 From: "Aaron D. Lee" Date: Wed, 7 Jan 2026 22:15:02 -0500 Subject: [PATCH] Accordion chevrons: less orange, more muted gold MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reduced saturation (10→2), hue-rotate (15→5), brightness (1.5→1.2) for a subtler gold that matches the toned-down color scheme. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- frontends/web/templates/decode.html | 2 +- frontends/web/templates/encode.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/web/templates/decode.html b/frontends/web/templates/decode.html index 7fff7a6..f150abc 100644 --- a/frontends/web/templates/decode.html +++ b/frontends/web/templates/decode.html @@ -24,7 +24,7 @@ border-left: 3px solid #ffe699; } .step-accordion .accordion-button::after { - filter: invert(1) sepia(1) saturate(10) hue-rotate(15deg) brightness(1.5); + filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.2); } .step-accordion .accordion-body { background: rgba(30, 40, 50, 0.4); diff --git a/frontends/web/templates/encode.html b/frontends/web/templates/encode.html index 0b99065..1c08603 100644 --- a/frontends/web/templates/encode.html +++ b/frontends/web/templates/encode.html @@ -24,7 +24,7 @@ border-left: 3px solid #ffe699; } .step-accordion .accordion-button::after { - filter: invert(1) sepia(1) saturate(10) hue-rotate(15deg) brightness(1.5); + filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.2); } .step-accordion .accordion-body { background: rgba(30, 40, 50, 0.4);