#terminal-colors #style #chalk

chalk_rs

A crate which adds colors and styles to your terminal program

1 stable release

1.0.1 May 20, 2020
1.0.0 May 6, 2020

#1103 in Command-line interface

37 downloads per month
Used in 7 crates (2 directly)

Custom license

21KB
579 lines

A crate for terminal colors and styles

use chalk_rs::prelude::*;
fn main() {
    let mut chalk = BasicChalk::new();
    chalk.red().println(&"This text is red");
    chalk.bold().println(&"Now it's red AND bold");
}

That's an example of basic color. There are three types of color in chalk: Basic, Ansi, and RGB.

use chalk_rs::prelude::*;

fn main() {
    let mut ansi = AnsiChalk::new();
    ansi.ansi(56).println(&"Purple-ish");
    let mut rgb = RgbChalk::new();
    rgb.rgb(25, 125, 63).println(&"This color is ugly");
}

RGB chalk is able to use ANSI and Basic color. ANSI chalk is able to use basic colors. However, ANSI chalk cannot use RGB and Basic chalk can't use RGB or ANSI.

use chalk_rs::prelude::*;

fn main() {
    let mut rgb = RgbChalk::new();
    rgb.ansi(56).println(&"Purple-ish");
    rgb.red().println(&"red");
}

Dependencies

~175KB