Function term_basics_linux::use_colours [−][src]
pub fn use_colours(fg: UC, bg: UC)Expand description
Sets both foreground and background colours. It will print linux colour escape characters to std out. It will not set the state.
Example
use term_basics_linux as tbl;
for fg in tbl::UC::iterator(){
for bg in tbl::UC::iterator(){
tbl::use_colours(fg.clone(), bg.clone());
println!("haha yes");
}
}