6 releases

0.3.2-alpha Jun 25, 2022
0.3.1 Jun 24, 2022
0.2.0 Jul 18, 2019
0.1.0 Jul 16, 2019

#372 in Command-line interface

Download history 1060/week @ 2023-12-14 837/week @ 2023-12-21 890/week @ 2023-12-28 1448/week @ 2024-01-04 1111/week @ 2024-01-11 1226/week @ 2024-01-18 870/week @ 2024-01-25 821/week @ 2024-02-01 818/week @ 2024-02-08 810/week @ 2024-02-15 698/week @ 2024-02-22 729/week @ 2024-02-29 892/week @ 2024-03-07 641/week @ 2024-03-14 898/week @ 2024-03-21 740/week @ 2024-03-28

3,293 downloads per month
Used in 6 crates (2 directly)

MIT license

17KB
248 lines

ansi_rgb

Colorful terminal text using ANSI escape sequences.

  • Very simple API
  • 3-, 4-, 8-, and 24-bit colors
  • Colors all the formatting traits
  • Easy to add your own color types
  • no_std compliant

crates.io badge
docs.rs badge
Downloads badge

Full documentation:

https://docs.rs/ansi_rgb


lib.rs:

Foreground colors

use ansi_rgb::{ Colorable, red };

println!("{}", "Hello, world!".fg(red()));

Output:

Hello, world!

Background colors

use ansi_rgb::{ Colorable, red };

println!("{}", "Hello, world!".bg(red()));

Output:

Hello, world!

Nesting

use ansi_rgb::{ Colorable, blue, green, red };

let formatted = format!(
"Hello, world! {}",
format!(
"{} is an interesting {}",
"This".fg(blue()),
"day".fg(red())
).bg(green())
);

println!("{}", formatted);

Output:

Hello, world! This is an interesting day

Anything formattable

use ansi_rgb::*;

#[derive(Debug)]
struct Foo(i32, i32);

let foo = Foo(1, 2);
println!("{:?}", foo.fg(green()));

Output:

Foo(1, 2)

3-bit colors

use ansi_rgb::{ Colorable, Color3 };

println!("{}", "Hello, world!".fg(Color3::RED).bg(Color3::BLACK));

Output:

Hello, world!

4-bit colors

use ansi_rgb::{ Colorable, Color4 };

println!("{}", "Hello, world!".fg(Color4::BRIGHT_RED).bg(Color4::BLACK));

Output:

Hello, world!

8-bit colors

use ansi_rgb::{ Colorable, Color8 };

println!("{}", "Hello, world!".fg(Color8::new(160)).bg(Color8::new(0)));

Output:

Hello, world!

24-bit colors

Built-in support for the rgb crate.

# Cargo.toml
[dependencies]
rgb = { version = "0.8", default-features = false }
use ansi_rgb::{ Colorable };
use rgb::RGB8;

let fg = RGB8::new(123, 231, 111);
let bg = RGB8::new(10, 100, 20);
println!("{}", "Yuck".fg(fg).bg(bg));

Output:

Yuck

Extending to other color types

If you have your own color type and you know how to turn it into ANSI escape sequences then just implement FormatColor:

use ansi_rgb::{ Canvas, Colorable, FormatColor };
use core::fmt;

enum FavoriteColors {
SkyBlue,
RocketPlumeYellow,
TitaniumGray
}

impl FormatColor for FavoriteColors {
fn prelude(&self, f: &mut fmt::Formatter, canvas: Canvas) -> fmt::Result {
let (r, g, b) = match self {
FavoriteColors::SkyBlue => (135, 206, 235),
FavoriteColors::RocketPlumeYellow => (255, 255, 0),
FavoriteColors::TitaniumGray => (86, 95, 107)
};
write!(
f,
"\x1B[{};2;{};{};{}m",
match canvas {
Canvas::Foreground => 38,
Canvas::Background => 48
},
r,
g,
b
)
}
}

println!(
"The sky is {}",
"blue".fg(FavoriteColors::SkyBlue)
);

Output:

The sky is blue

Features

default includes 3-, 4-, 8-, and 24-bit colors and depends on the rgb crate, giving you the following things:

  • Dependency on rgb crate
  • Implementation of FormatColor for rgb::RGB8 type
  • Color3 enum and its implementation of FormatColor
  • Color4 struct and its implementation of FormatColor
  • Color8 struct and its implementation of FormatColor
  • Color functions (red(), orange(), etc)

Windows users

You need to set your console mode. Otherwise you'll get garbage like this:

[48;2;159;114;0m �[0m

Dependencies

~77KB