[][src]Function seahorse::color::yellow

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

Get the text with yellow text

Example

use seahorse::color;

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