Skip to content

Commit

Permalink
changed the color palette
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek committed Jul 16, 2024
1 parent 3aa606c commit 362cbf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cli_args/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ fn custom_styles() -> Styles {
Style::new()
.bold()
.underline()
.fg_color(Some(Color::Ansi(AnsiColor::Yellow))),
.fg_color(Some(Color::Ansi(AnsiColor::Green))),
)
.usage(
Style::new()
.bold()
.fg_color(Some(Color::Ansi(AnsiColor::Green))),
)
.literal(Style::new().fg_color(Some(Color::Ansi(AnsiColor::Magenta))))
.placeholder(Style::new().fg_color(Some(Color::Ansi(AnsiColor::Red))))
.literal(Style::new().fg_color(Some(Color::Ansi(AnsiColor::Cyan))))
.placeholder(Style::new().fg_color(Some(Color::Ansi(AnsiColor::Blue))))
}

#[derive(Parser, Debug)]
Expand Down

0 comments on commit 362cbf7

Please sign in to comment.