kolorz

Crates.iokolorz
lib.rskolorz
version
sourcesrc
created_at2023-06-27 02:43:54.496504+00
updated_at2025-02-21 23:38:04.969826+00
descriptionA silly little library for printing kolored text to the terminal
homepage
repositoryhttps://github.com/dotzenith/kolorz.rs
max_upload_size
id900923
Cargo.toml error:TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
zenith (dotzenith)

documentation

README

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



❖ Information

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


❖ Installation

Add kolorz to your project's Cargo.toml:

[dependencies]
kolorz = "0.10.0"

❖ Basic Usage

// print kolored text
use kolorz::Kolor;

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

❖ The following kolorschemes are available:


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

  • red (0)
  • purple (1)
  • blue (2)
  • green (3)
  • orange (4)
  • yellow (5)
  • text (6)
  • random (picks a random color from above)
  • numbered (allows the user to pick a kolor by number)

❖ Kustom Kolorz are also available

// custom kolorz from hex
use kolorz::HexKolorize;

fn main() {
    println!("{}", "This is peach".kolorize("#fab387"));
}
// custom kolorz from RGB
use kolorz::RGBKolorize;

fn main() {
    println!("{}", "This is red".kolorize((235, 160, 172)));
}

❖ What's New?

0.10.1 - Update Rust edition


Commit count: 26

cargo fmt