richterm 0.1.0

rich terminal, follow's python's famous rich library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# richterm


```rust
use richterm::text;
use richterm::print;

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