simple_term_attr 0.2.1

A very simple library to use some terminal attributes like colors.
Documentation
# Introduction

use simple terminal atrributes like colors,clear_line,clear_screen,show_cursor,hide_cursor,move,etc.this library uses simple terminal escape to do so.

# Quick start

```bash
cargo add simple_term_attr
```

OR

```bash
cargo add --git https://github.com/BayonetArch/simple_term_attr.git
```

# Example 

```rust
use simple_term_attr::{DisplayAttribute, StyleAttributes};

fn main() {
    println!("{}", "Red!".red());
    println!("{}", "underlined text".underline());

    DisplayAttribute::clear_line(); //clears current line
    DisplayAttribute::clear_screen(); //clear the screen

    DisplayAttribute::hide_cursor();  // hide terminal cursor  
    DisplayAttribute::show_cursor(); // show terminal cursor
    
    let row = 10;
    let col = 20;
    DisplayAttribute::move_cursor(row,col);  // move cursor to specified row and col

}
```