Rainbow

Functions

write_rainbow_bg(text: &str) write_rainbow_fg(text: &str) g

Example

```rust use std::io;

fn main() -> io::Result<()> { rainbow::writerainbowfg("Hello, World")?; Ok(()) } ```