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

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);