richterm 0.1.0

rich terminal, follow's python's famous rich library
Documentation

richterm

use richterm::text;
use richterm::print;

fn main(){
	let msg = &[
		&text("richterm", "fg:violet bg:violet b:0 eff:blink"),
		&text("\nwefwef", "")
		];
	print(msg) 
}