ANSI Styling for Rust
```rs use ansi_brush::Style;
fn main() { println!("{} {}", "Hello,".light_cyan(), "World!".reset()); // use conclude to stop background bleeding into next lines (try it without conclude!) println!("{}", "Goodbye, Mars!".red().conclude()); } ```