pealn 0.3.0

Intuitive way to print colored and styled text to console ,use predefined and RGB colors , use text styles , using ANSI #terminal #console #colors #text #print #pealn #win #windows #ansi
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use pealn::{pealn,pea};
fn main() {

    let name  = "Subham Shaw";
    let age = 25837583;

    pealn!("[yellow,bold](Name) : [bold,purple]({}) " , name);
    pealn!("[yellow,bold](Age)  : [bold,italic]({}) " , age );
    
    pea!("[yellow,bold](link) : [bold,green,underline,italic](YouTube) " );
 }