Skip to content

Commit

Permalink
On second thoughts, the yellow was better after all.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Feb 9, 2022
1 parent b9a1e37 commit f849d99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nf_core/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class OptionHighlighter(RegexHighlighter):
{
"option": "bold cyan",
"switch": "bold green",
"metavar": "bold magenta",
"metavar": "bold yellow",
"usage": "yellow",
}
),
Expand Down Expand Up @@ -140,7 +140,7 @@ class OptionHighlighter(RegexHighlighter):
# Column for a metavar, if we have one
metavar = ""
if param.metavar:
metavar = Text(f" {param.metavar}", style="bold magenta")
metavar = Text(f" {param.metavar}", style="bold yellow")

# Help text
help_record = param.get_help_record(ctx)
Expand Down

0 comments on commit f849d99

Please sign in to comment.