#terminal-colors #ansi-term #terminal-console #ansi #ansi-console #terminal

colorify

Convenience macros for printing to the terminal in color on non-Windows platforms

5 releases

Uses old Rust 2015

0.2.3 May 25, 2018
0.2.2 May 15, 2016
0.2.1 May 13, 2016
0.2.0 Mar 30, 2016
0.1.0 Mar 9, 2016

#1374 in Command-line interface

Download history 139/week @ 2024-12-08 159/week @ 2024-12-15 140/week @ 2024-12-22 64/week @ 2024-12-29 135/week @ 2025-01-05 105/week @ 2025-01-12 68/week @ 2025-01-19 39/week @ 2025-01-26 79/week @ 2025-02-02 83/week @ 2025-02-09 72/week @ 2025-02-16 65/week @ 2025-02-23 44/week @ 2025-03-02 43/week @ 2025-03-09 37/week @ 2025-03-16 18/week @ 2025-03-23

148 downloads per month
Used in 6 crates

MIT license

11KB
138 lines

colorify!

Documentation

Handy macros for printing to the terminal in color.

Usage

Add the following to your Cargo.toml:

[dependencies]
colorify = "0.2"

Example

#[macro_use] extern crate colorify;
use std::io::{self, Write};

fn main() {
	// List colors:
	printc!(help);

	// Use one of three ways:
	printc!(yellow: "Number of banana peels on head: {}", 7);
	printlnc!(red: "Number of zombies killed: {}", 50);
	writeln!(io::stdout(), colorify!(orange: "Number of baggies filled \
		while walking dogs: {}"), 2).unwrap();
}

Retired

This library is unlikely to be updated with new features or changes.

Recommended alternatives:

No runtime deps

Features