Colorful console text using ANSI escape sequences.
rgb
crate)no_std
compliantCargo.toml:
toml
ansi_rgb = "0.2.0"
```rust use ansi_rgb::{ Foreground, red };
println!("{}", "Hello, world!".fg(red())); ```
Output:
```rust use ansi_rgb::{ Background, red };
println!("{}", "Hello, world!".bg(red())); ```
Output:
```toml
[dependencies] rbg = "0.8" ```
```rust use ansi_rgb::{ Foreground, Background }; use rgb::RGB8;
let fg = RGB8::new(123, 231, 111); let bg = RGB8::new(10, 100, 20); println!("{}", "Yuck".fg(fg).bg(bg)); ```
Output:
```rust
struct Foo(i32, i32);
let foo = Foo(1, 2); println!("{:?}", foo.fg(green())); ```
Output:
You need to set your console mode. Otherwise you'll get garbage like this:
�[48;2;159;114;0m �[0m