This crate provides a runtime version of the `colorize!` macro from the `fancy` crate. It can be used to dynamically create colored strings at runtime. ```rust let msg = colorize("[blue|b]Hello [:u|red]world[:b]!".into()); println!("{}", msg); ```