rainbow-text 0.1.0

Write text in rainbow colors
Documentation

Rainbow

Functions

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

Example

use std::io;

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