[][src]Function seahorse::color::blue

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

Get the text with blue text

Example

use seahorse::color;

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