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



❖ Information

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


❖ Installation

Add kolorz to your project's Cargo.toml:

toml [dependencies] kolorz = "0.2.0"


❖ Basic Usage

```rust // print colored text use kolorz::get_colorscheme;

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

```rust // get an array of all available colorschemes use kolorz::getallcolorschemes;

fn main() { let colorschemes = getallcolorschemes(); } ```


❖ The following colorschemes are available:


❖ The following colors are available on all of the colorschemes:


❖ What's New?

0.2.0 - Added a helper function to get an array of all colorschemes