Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Apr 15, 2024
1 parent 29b46ef commit 48d5e34
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ use clap::{Parser, Subcommand};
use std::io::{Error, ErrorKind};
use std::path::PathBuf;

const CMD_STYLE: Style = Style::new().bold().fg_color(Some(Ansi(AnsiColor::BrightCyan)));
const HEADER_STYLE: Style = Style::new()
const CMD_STYLE: Style = Style::new()
.bold()
.fg_color(Some(Ansi(AnsiColor::Green)));
.fg_color(Some(Ansi(AnsiColor::BrightCyan)));
const HEADER_STYLE: Style = Style::new().bold().fg_color(Some(Ansi(AnsiColor::Green)));
const PLACEHOLDER_STYLE: Style = Style::new().fg_color(Some(Ansi(AnsiColor::BrightCyan)));
const STYLES: Styles = Styles::styled()
.literal(AnsiColor::BrightCyan.on_default().bold())
.placeholder(AnsiColor::BrightCyan.on_default());


const OPTIONS_PLACEHOLDER: &str = "{options}";
const SUBCOMMANDS_PLACEHOLDER: &str = "{subcommands}";

Expand Down

0 comments on commit 48d5e34

Please sign in to comment.