From 85bda718cce6827455cc3446eb7823877ae646c6 Mon Sep 17 00:00:00 2001 From: Catherine Renelle <32781029+catrenelle@users.noreply.github.com> Date: Fri, 27 Feb 2026 23:54:59 -0500 Subject: [PATCH] Fix dark mode text color in tag picker dropdown Co-Authored-By: Claude Opus 4.6 --- src/lib/components/TagPicker.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/components/TagPicker.svelte b/src/lib/components/TagPicker.svelte index 07a27fc..41c3539 100644 --- a/src/lib/components/TagPicker.svelte +++ b/src/lib/components/TagPicker.svelte @@ -133,7 +133,7 @@ class="w-full flex items-center gap-2 rounded px-2 py-1 text-sm hover:bg-gray-50 dark:hover:bg-gray-700 {isApplied(tag.id) ? 'bg-blue-50 dark:bg-blue-900/30' : ''}" > - {tag.name} + {tag.name} {#if isApplied(tag.id)} @@ -142,7 +142,7 @@ {/each} -
+

Create tag

{#each presetColors as color}