Skip to content

A lightweight utility for styled terminal printing using ANSI escape codes

License

Notifications You must be signed in to change notification settings

brysonbw/chroma-print

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

ChromaPrint

A lightweight utility for styled terminal printing using ANSI escape codes.

Crates.io Crates.io CI

Install globally

cargo install chroma-print

Install as a library

cargo add chroma-print

Usage

use chroma_print::{ChromaPrint, print_error, print_info, print_success, print_warn};

fn main() {
    // Using the provided macros for convenient styled printing:
    print_success!("This is a success message!");
    print_info!("This is an info message!");
    print_warn!("This is a warning message!");
    print_error!("This is an error message!");

    // Alternatively, you can use the ChromaPrint struct directly:
    println!("{}", ChromaPrint::success("Success!"));
    println!("{}", ChromaPrint::info("Info!"));
    println!("{}", ChromaPrint::warn("Warning!"));
    eprintln!("{}", ChromaPrint::error("Error!"));
}

Contributing

If you have suggestions for how this project could be improved, or want to report a bug, feel free to open an issue! We welcome all contributions.

Likewise, before contributing please read and complete the contribution guide.

Resources

License

MIT

About

A lightweight utility for styled terminal printing using ANSI escape codes

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages