Skip to main content

spin_common/
cli.rs

1//! Common CLI code and constants
2
3use clap::builder::{Styles, styling::AnsiColor};
4
5/// Clap [`Styles`] for Spin CLI and plugins.
6pub const CLAP_STYLES: Styles = Styles::styled()
7    .header(AnsiColor::Yellow.on_default())
8    .usage(AnsiColor::Green.on_default())
9    .literal(AnsiColor::Green.on_default())
10    .placeholder(AnsiColor::Green.on_default());