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 <noreply@anthropic.com>
This commit is contained in:
klopez4212
2026-07-07 07:51:25 +01:00
co-authored by Claude Fable 5
parent b93d168ccf
commit 4c4faacdc2
2 changed files with 4 additions and 5 deletions
@@ -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";
}
@@ -544,7 +544,7 @@ function CompletedWorkMarker({ items }: { items: TranscriptItem[] }) {
onClick={() => setIsOpen((current) => !current)}
type="button"
>
<span className="flex min-w-0 items-center gap-1.5 text-muted-foreground">
<span className="flex min-w-0 items-center gap-1.5 text-muted-foreground/70">
<span className="truncate text-sm font-medium">{label}</span>
<ChevronDown
className={cn(