Expand description
clap_themes is a quick and easy way to add color and style to your
clap-powered CLI!
§Examples
use clap::Parser;
#[derive(Parser)]
#[clap(styles = clap_themes::CARGO)]
struct Cli {
/// Here's some good help text!
#[clap(short, long)]
arg1: String,
}