Dependency-less library for simple terminal text coloring and formating
Basic usage (checkout the examples/usage.rs file for more information)
```rust use termcol::*;
fn main() { println!("{}red{}", color("red"), color("reset")); println!("{}bold{}", format("bold"), format("reset")); println!("{}", color_string("im blue", "blue")); } ```
This project is distributed under MIT license.