Skip to content

Commit

Permalink
Merge pull request #4126 from epage/dimmed
Browse files Browse the repository at this point in the history
fix(help): Don't dim placeholders
  • Loading branch information
epage committed Aug 26, 2022
2 parents 7818af3 + e02648e commit 6523666
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/builder/styled_str.rs
Expand Up @@ -156,9 +156,7 @@ impl StyledStr {
Some(Style::Literal) => {
color.set_bold(true);
}
Some(Style::Placeholder) => {
color.set_dimmed(true);
}
Some(Style::Placeholder) => {}
Some(Style::Good) => {
color.set_fg(Some(termcolor::Color::Green));
}
Expand Down

0 comments on commit 6523666

Please sign in to comment.