forked from rust-lang/cargo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(shell): Centralize
Shell
styling
This is a very rough pass at naming the styles with a focus on getting something in and keeping the colors the same.
- Loading branch information
Showing
9 changed files
with
64 additions
and
58 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
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
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 |
---|---|---|
@@ -1,9 +1,13 @@ | ||
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); |