━━━━━━ ❖ ━━━━━━
❖ 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.1.0"
❖ Basic Usage
```rust
use kolorz::get_colorscheme;
fn main() {
let mocha = get_colorscheme("catppuccin mocha");
println!("{}", mocha.red("This is red"));
}
```
❖ The following colorschemes are available:
- catppuccin latte
- catppuccin frappe
- catppuccin macchiato
- catppuccin mocha
- dracula
- nord
- gruvbox
- onedark
- tokyonight
- ayu
- palenight
- gogh
❖ The following colors are available on all of the colorschemes:
- red
- purple
- blue
- orange
- yellow
- white
❖ What's New?
0.1.0 - Initial release