-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This mirrors what the API in rust-lang/cargo#12655. I'm hoping to have the `anstyle` consts be a public crate owned by the cargo team in the future after which we'll refactor to re-export it. See rust-lang/cargo#12578 for adding the style.
- Loading branch information
Showing
4 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
use anstyle::*; | ||
|
||
pub const NOP: Style = Style::new(); | ||
pub const HEADER: Style = AnsiColor::Green.on_default().effects(Effects::BOLD); | ||
pub const USAGE: Style = AnsiColor::Green.on_default().effects(Effects::BOLD); | ||
pub const LITERAL: Style = AnsiColor::Cyan.on_default().effects(Effects::BOLD); | ||
pub const PLACEHOLDER: Style = AnsiColor::Cyan.on_default(); | ||
pub const ERROR: Style = AnsiColor::Red.on_default().effects(Effects::BOLD); | ||
pub const WARN: Style = AnsiColor::Yellow.on_default().effects(Effects::BOLD); | ||
pub const NOTE: Style = AnsiColor::Cyan.on_default().effects(Effects::BOLD); | ||
pub const GOOD: Style = AnsiColor::Green.on_default().effects(Effects::BOLD); | ||
pub const VALID: Style = AnsiColor::Cyan.on_default().effects(Effects::BOLD); | ||
pub const INVALID: Style = AnsiColor::Yellow.on_default().effects(Effects::BOLD); | ||
|
||
#[cfg(feature = "clap")] | ||
pub const CLAP_STYLING: clap::builder::styling::Styles = clap::builder::styling::Styles::styled() | ||
.header(HEADER) | ||
.usage(USAGE) | ||
.literal(LITERAL) | ||
.placeholder(PLACEHOLDER) | ||
.error(ERROR) | ||
.valid(VALID) | ||
.invalid(INVALID); |