aboutsummaryrefslogtreecommitdiff
path: root/vendor/supports-color/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/supports-color/README.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/supports-color/README.md')
-rw-r--r--vendor/supports-color/README.md23
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/supports-color/README.md b/vendor/supports-color/README.md
deleted file mode 100644
index e52e61f..0000000
--- a/vendor/supports-color/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-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.");
-}
-```