Beautify
A simple crate for beautifying your terminal by coloring it
# installation
// usage
use Colors;
more features will be added in the near future.
A simple crate for beautifying your terminal by coloring it
# installation
cargo add beautify
// usage
use beautify::Colors;
fn main() {
println!("{}", "accent color".text_blue_600());
println!("{}", "black text, white background".text_black().bg_white());
println!("{}", "my gradient".text_gradient(&["#ffffff", "#000000"]));
}
more features will be added in the near future.