pub fn reset_style()
Expand description

Resets the style. It sets the style to the default style.

Example

use term_basics_linux as tbl;
tbl::set_colours(tbl::UC::Cyan, tbl::UC::Red);
tbl::set_style(tbl::TextStyle::Blink);
tbl::println("im am cyan on red and blinking");
tbl::reset_style();
tbl::println("i am still cyan on red but im am not blinking");