Rust library providing ansi colour and style for the terminal.
Run the example:
cargo build --release
./target/release/ransid-example
Use the library:
```
let s = "I am black on green.".black().bg_green().underline();
println!("{}", s);
Or
let style = newstyle().gray().bgblue().bold().blink_slow(); println!(style.render("I am white on blue.")); ```
BSD 3-Clause: LICENSE.txt