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

Print to stdout with text and background colours and style.

Example

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