From 4c4faacdc290e9a958ca7a76751cec658a8b27ce Mon Sep 17 00:00:00 2001 From: klopez4212 Date: Sat, 4 Jul 2026 15:32:11 +0100 Subject: [PATCH] Soften chat marker rows to muted-foreground/70 At full muted-foreground strength the marker labels, icons, and the completed-work expander still competed with the conversation text; drop them to 70% opacity so they clearly read as plumbing. Co-Authored-By: Claude Fable 5 --- desktop/src/features/chats/ui/ChatActivityMarkerRow.tsx | 7 +++---- desktop/src/features/chats/ui/ChatActivityTranscript.tsx | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/desktop/src/features/chats/ui/ChatActivityMarkerRow.tsx b/desktop/src/features/chats/ui/ChatActivityMarkerRow.tsx index 6989112ed..76ec7123a 100644 --- a/desktop/src/features/chats/ui/ChatActivityMarkerRow.tsx +++ b/desktop/src/features/chats/ui/ChatActivityMarkerRow.tsx @@ -186,8 +186,7 @@ function MarkerMeta({ loading, meta }: { loading: boolean; meta: string }) { function markerToneClass(tone: ActivityMarkerTone) { if (tone === "danger") return "text-destructive"; - if (tone === "success" || tone === "warning" || tone === "muted") { - return "text-muted-foreground"; - } - return "text-muted-foreground"; + // Softer than plain muted-foreground: marker rows are plumbing, and at + // full muted strength they still competed with the conversation text. + return "text-muted-foreground/70"; } diff --git a/desktop/src/features/chats/ui/ChatActivityTranscript.tsx b/desktop/src/features/chats/ui/ChatActivityTranscript.tsx index 028cb2b08..e63d29257 100644 --- a/desktop/src/features/chats/ui/ChatActivityTranscript.tsx +++ b/desktop/src/features/chats/ui/ChatActivityTranscript.tsx @@ -544,7 +544,7 @@ function CompletedWorkMarker({ items }: { items: TranscriptItem[] }) { onClick={() => setIsOpen((current) => !current)} type="button" > - + {label}