mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
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:
co-authored by
Claude Fable 5
parent
b93d168ccf
commit
4c4faacdc2
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user