fix(web): use the terracotta accent instead of green for done checkmarks
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 <noreply@anthropic.com>
This commit is contained in:
@@ -241,7 +241,7 @@
|
||||
</div>
|
||||
{/if}
|
||||
{#if idx === messages.length - 1 && msg.text === '' && (streaming || indicatorDone || error)}
|
||||
<div class="flex items-center gap-2 py-1 text-xs {error ? 'text-destructive' : indicatorDone ? 'text-success' : 'text-muted-foreground'}">
|
||||
<div class="flex items-center gap-2 py-1 text-xs {error ? 'text-destructive' : indicatorDone ? 'text-primary' : 'text-muted-foreground'}">
|
||||
{#if error}
|
||||
<XIcon class="size-3 shrink-0" />
|
||||
{:else if indicatorDone}
|
||||
|
||||
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user