From 484efccb4501354a1b11149d391ec9c0d686ba69 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Tue, 16 Dec 2025 18:08:11 +0100 Subject: [PATCH] style(calendar): use neutral colors for TagStrip action buttons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../lib/components/calendar/TagStrip.svelte | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/apps/calendar/apps/web/src/lib/components/calendar/TagStrip.svelte b/apps/calendar/apps/web/src/lib/components/calendar/TagStrip.svelte index 2e4147a71..7c75a1874 100644 --- a/apps/calendar/apps/web/src/lib/components/calendar/TagStrip.svelte +++ b/apps/calendar/apps/web/src/lib/components/calendar/TagStrip.svelte @@ -218,40 +218,40 @@ pointer-events: none; } - /* More pill with muted style */ + /* More pill with neutral style */ .more-pill { - color: #6b7280; + color: #374151; } .more-pill .tag-name { - color: #6b7280; - font-weight: 600; + color: #374151; + font-weight: 500; } :global(.dark) .more-pill { - color: #9ca3af; + color: #f3f4f6; } :global(.dark) .more-pill .tag-name { - color: #9ca3af; + color: #f3f4f6; } - /* Create pill with primary accent */ + /* Create pill with neutral style */ .create-pill { - color: #3b82f6; + color: #374151; } .create-pill .tag-name { - color: #3b82f6; - font-weight: 600; + color: #374151; + font-weight: 500; } :global(.dark) .create-pill { - color: #60a5fa; + color: #f3f4f6; } :global(.dark) .create-pill .tag-name { - color: #60a5fa; + color: #f3f4f6; } /* Glass tag styling - same as PillNavigation pills */