owo-colors 1.0.0

Zero-allocation terminal colors that'll make your people go owo
Documentation

This crate provides OwoColorize, an extension trait for colorizing a formatter.

Example

use owo_colors::OwoColorize;

fn main() {
// Foreground colors
println!("My number is {:#x}!", 10.green());
// Background colors
println!("My number is not {}!", 4.on_red());
}

Generically color

use owo_colors::OwoColorize;
use owo_colors::colors::*;

fn main() {
// Generically color
println!("My number might be {}!", 4.fg::<Black>().bg::<Yellow>());
}

Stylize

use owo_colors::OwoColorize;

println!("{}", "strikethrough".strikethrough());