beautify 0.1.0

beautify your terminal
Documentation
  • Coverage
  • 98.97%
    192 out of 194 items documented0 out of 193 items with examples
  • Size
  • Source code size: 40.67 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.75 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • absurdish

Beautify

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.