coloured-strings

Rust crate that provides a function to print coloured strings to be printed to the terminal. rust coloured("this is a green string", "green"); coloured("this is a red string", "r"); coloured("this is a string with a strikethrough", "s") colorued(&coloured("this string has white text and a blue background", w")[..], "b-bl"));

How to Use

Include "colouredstrings" in your project (I recommend you use "*") ```rust use colouredstrings::*;

fn main() { println!("{}", coloured("I love coloured text!", "brightgreen"); } ```

Current Colours

```rust // normal colours "black" | "b" "red" | "r" "green" | "g" "yellow" | "y" "blue" | "bl" "magenta" | "m" "cyan" | "c" "white"| "w"

 // bright colours
 "brightblack" | "bb"
 "brightred" | "br"
 "brightgreen" | "bg"
 "brightyellow" | "by"
 "brightblue" | "bbl"
 "brightmagenta" | "bm"
 "brightcyan" | "bc"
 "brightwhite" | "bw"

 //background colours
 "backgroundred" | "b-r"
 "backgroundgreen" | "b-g"
 "backgroundyellow" | "b-y"
 "backgroundblue" | "b-b"
 "backgroundmagenta" | "b-m"
 "backgroundcyan" | "b-c"
 "bacgroundwhite" | "b-w"

 //bright background colours
 "backgroundbrightblack" | "b-bb"
 "backgroundbrightred" | "b-br"
 "backgroundbrightgreen" | "b-bg"
 "backgroundbrightyellow" | "b-by"
 "backgroundbrightblue" | "b-bbl"
 "backgroundbrightmagenta" | "b-bm"
 "backgroundbrightcyan" | "b-bc"
 "backgroundbrightwhite" | "b-bw"

// other styles
 "clear" | "cl"
 "dimmed" | "d"
 "italic" | "i"  
 "underline" | "u"
 "blink" | "bli"  
 "reversed" | "re"
 "hidden" | "h"
 "strikethrough" | "s"

```