The crossterm_style
crate is deprecated and no longer maintained. The GitHub repository will
be archived soon. All the code is being moved to the crossterm
crate. You can learn more in the
Merge sub-crates to the crossterm crate
issue.
This crate allows you to work with the terminal colors and text attributes. It supports all UNIX and Windows terminals down to Windows 7 (not all terminals are tested, see the Tested Terminals for more info).
crossterm_style
is a sub-crate of the crossterm crate. You can use it
directly, but it's highly recommended to use the crossterm crate with
the style
feature enabled.
Click to show Cargo.toml.
```toml [dependencies]
crossterm = "0.11" ```
```rust use crossterm::{Colored, Color, Colorize, Styler, Attribute};
// pass any Attribute
value to the formatting braces.
println!("{} Underlined {} No Underline", Attribute::Underlined, Attribute::NoUnderline);
// you could also call different attribute methods on a &str
and keep on chaining if needed.
let styledtext = "Bold Underlined".bold().underlined();
println!("{}", styledtext);
// old-way but still usable let styled_text = style("Bold Underlined").bold().underlined(); ```
```rust use crossterm::{Colored, Color, Colorize};
println!("{} Red foreground color", Colored::Fg(Color::Red)); println!("{} Blue background color", Colored::Bg(Color::Blue));
// you can also call different coloring methods on a &str
.
let styledtext = "Bold Underlined".red().onblue();
println!("{}", styled_text);
// old-way but still usable let styled_text = style("Bold Underlined").with(Color::Red).on(Color::Blue); ```
```rust use crossterm::{Colored, Color, Colorize};
// custom rgb value (Windows 10 and UNIX systems) println!("{} some colored text", Colored::Fg(Color::Rgb { r: 10, g: 10, b: 10 }));
// custom ansi color value (Windows 10 and UNIX systems) println!("{} some colored text", Colored::Fg(Color::AnsiValue(10))); ```
This project is licensed under the MIT License - see the LICENSE file for details