diff options
author | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
commit | 1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch) | |
tree | 7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/supports-color/README.md | |
parent | 5ecd8cf2cba827454317368b68571df0d13d7842 (diff) | |
download | fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip |
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/supports-color/README.md')
-rw-r--r-- | vendor/supports-color/README.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/supports-color/README.md b/vendor/supports-color/README.md new file mode 100644 index 0000000..e52e61f --- /dev/null +++ b/vendor/supports-color/README.md @@ -0,0 +1,23 @@ +Detects whether a terminal supports color, and gives details about that +support. It takes into account the `NO_COLOR` environment variable. + +This crate is a Rust port of [@sindresorhus](https://github.com/sindresorhus)' +[NPM package by the same name](https://npm.im/supports-color). + +## Example + +```rust +use supports_color::Stream; + +if let Some(support) = supports_color::on(Stream::Stdout) { + if support.has_16m { + println!("16 million (RGB) colors are supported"); + } else if support.has_256 { + println!("256 colors are supported."); + } else if support.has_basic { + println!("Only basic ANSI colors are supported."); + } +} else { + println!("No color support."); +} +``` |