Skip to content

Commit 24d502e

Browse files
committed
fix: use accent color for detail text in StepTracker tree
1 parent a7db6b0 commit 24d502e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/specify_cli/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,9 @@ def render(self):
367367
else:
368368
line = f"{symbol} [bright_black]{label}[/bright_black]"
369369
else:
370-
# Label white, detail (if any) light gray in parentheses
370+
# Label white, detail in accent color
371371
if detail_text:
372-
line = f"{symbol} [white]{label}[/white] [bright_black]({detail_text})[/bright_black]"
372+
line = f"{symbol} [white]{label}[/white] [{ACCENT_COLOR}]{detail_text}[/{ACCENT_COLOR}]"
373373
else:
374374
line = f"{symbol} [white]{label}[/white]"
375375

0 commit comments

Comments
 (0)