━━━━━━ ❖ ━━━━━━



❖ Information

kolorz is a silly little library for printing kolored text to the terminal


❖ Installation

Add kolorz to your project's Cargo.toml:

toml [dependencies] kolorz = "0.3.0"


❖ Basic Usage

```rust // print kolored text use kolorz::Kolor;

fn main() { let mocha = Kolor::new("catppuccin mocha"); println!("{}", mocha.red("This is red")); } ```

```rust // get an array of all available kolorschemes use kolorz::Kolor;

fn main() { let kolorschemes = Kolor::getallkolorschemes(); } ```


❖ The following kolorschemes are available:


❖ The following kolors are available on all of the kolorschemes:


❖ What's New?

0.3.0 - Move towards a cleaner API