[][src]Function seahorse::color::bg_cyan

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

Get text with cyan background

Example

use seahorse::color;

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