[][src]Function cli_kit::ansi::color_codes::yellow_bold

pub fn yellow_bold<T: ToString>(text: T) -> String

Take an item that implements ToString and return in yellow bold

Example


use cli_kit::ansi::color_codes::yellow_bold;

fn main() {
    println!("{}", yellow_bold(5));
}