[][src]Function term_basics_linux::println_cols_style

pub fn println_cols_style<T: Display>(
    msg: T,
    fg: UserColour,
    bg: UserColour,
    sty: TextStyle
)

Print to stdout with text and background colours and style.

Example

use term_basics_linux as tbl;
tbl::println_cols_style("No vegetal!", tbl::UserColour::Green, tbl::UserColour::Black, tbl::TextStyle::Bold);