From dffe01fb022036d7109459e426100fe28524b010 Mon Sep 17 00:00:00 2001 From: dtoro Date: Tue, 21 Jul 2026 12:12:00 +0200 Subject: [PATCH] fix(web): use the terracotta accent instead of green for done checkmarks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit text-primary instead of text-success — keeps the "done" state on-brand with the rest of the UI (buttons, focus rings) rather than introducing a separate green that only really worked well on the dark theme. Co-Authored-By: Claude Sonnet 5 --- web/src/lib/components/ChatThread.svelte | 2 +- web/src/lib/components/ToolCallCard.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/lib/components/ChatThread.svelte b/web/src/lib/components/ChatThread.svelte index 0ad8c1c..2f75410 100644 --- a/web/src/lib/components/ChatThread.svelte +++ b/web/src/lib/components/ChatThread.svelte @@ -241,7 +241,7 @@ {/if} {#if idx === messages.length - 1 && msg.text === '' && (streaming || indicatorDone || error)} -
+
{#if error} {:else if indicatorDone} diff --git a/web/src/lib/components/ToolCallCard.svelte b/web/src/lib/components/ToolCallCard.svelte index 0640445..7c39091 100644 --- a/web/src/lib/components/ToolCallCard.svelte +++ b/web/src/lib/components/ToolCallCard.svelte @@ -14,7 +14,7 @@ const statusColor = $derived.by(() => { if (status === 'running') return 'text-primary' if (status === 'error') return 'text-destructive' - return 'text-success' + return 'text-primary' }) const argsSummary = $derived.by(() => {