Function seahorse::color::cyan[][src]

pub fn cyan<T: Display>(t: T) -> String

Get the text with cyan text

Example

use seahorse::color;

let text = color::cyan("Hello");
println!("{}", text);