better_term
A rust crate designed to allow easy styling of terminal output using standard ANSI escape codes.
Usage
Style
A struct used to style output
use Style;
// prints out Hello world! underlined and bold
let style = default.underline.bold;
println!;
Color
A struct used to be simple for just changing colors
use Color;
// prints Hello, world! in green and red
println!;