We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7db6b0 commit 24d502eCopy full SHA for 24d502e
1 file changed
src/specify_cli/__init__.py
@@ -367,9 +367,9 @@ def render(self):
367
else:
368
line = f"{symbol} [bright_black]{label}[/bright_black]"
369
370
- # Label white, detail (if any) light gray in parentheses
+ # Label white, detail in accent color
371
if detail_text:
372
- line = f"{symbol} [white]{label}[/white] [bright_black]({detail_text})[/bright_black]"
+ line = f"{symbol} [white]{label}[/white] [{ACCENT_COLOR}]{detail_text}[/{ACCENT_COLOR}]"
373
374
line = f"{symbol} [white]{label}[/white]"
375
0 commit comments