Function seahorse::color::red[][src]

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

Get the text with red text

Example

use seahorse::color;

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