Ctrem

print colored and styled text

CLI Examples

bash $ctrem "[bold]H[/]ello"

Rust Example

```rust extern crate ctrem;

print("[bold][blink]Hello[/], world![/]") ``` prints Hello, world! in bold and blinks Hello

Available style - Default - Bold - Dim - Italic - Underline - Blink - Normal - Reverse - Strike

Available colors

Supported 8bit (256) also 24 bit (16.7 million) colors

Foreground is default , for background use ' * '

Cterm supported different styles and colors styles or colors palette must be inclosed in [palette] and ends with [/]

command palette must end , use [//] to end all

Foreground is default , for background use ' * '

Rust Example Colors

rust use ctrem::*; fn main(){ cprintln("[bold][blink][red]Hello[//],[green]world[*blue]![//]"); }