Ansirs (Like Answers I Guess?)

GitHub GitHub Workflow Status GitHub Workflow Status Rust Report Card Coverage Status GitHub last commit

Simple and probably flawed little library to make simple usage of ansi color codes super easy when working with rust.

I tend to make a lot of shitty little terminal applications and I got sick of googling for ANSI color codes, or installing some huge or unweildy package to handle it, so I decided to make my own stupid and/or unweildy crate!

Usage is as simple as I could make it because I'm pretty dumb and I wanted to make this as easy as possible on future-me.

```rust use ansirs::{Ansi, Colors, IntoAnsi, style_text};

let headerstyle = Ansi::new() .fg((25, 50, 250)) // Set foreground color to (25, 50, 250) .bg((255, 255, 255)) // Set background to white. .bold() // Set (toggle) bolded text. .underline(); // Set (toggle) underlined text. let bodystyle = Ansi::new() .fg((50, 200, 50)) .bg((255, 255, 255)); let mistake_style = Ansi::new() .fg((200, 25, 25)) .bg(Colors::White) // Most named html colors can be used from Colors .strike() // Set (toggle) strike-through. .italic(); // Set (toggle) italic text.

// Output can be saved (it is just a String) let header = styletext("Ansirs Crate", headerstyle); println!("{}", header); // Or you can use styletext directly in println. println!("{}", styletext("Simple and probably flawed library for dealing with ANSI color codes in rust!", bodystyle)); // You can also use the Ansi directly, but must remember to reset the style afterwards. println!("{}Definitely an awesome crate.{}", mistakestyle, Ansi::reset());

println!("{}", bodystyle.painttext("Theres also a number of convenience functions available.")); ansirs::styledprint("Like these!", mistakestyle); ```

style_text can also take a lambda to generate styles on the fly. The lambda should match the function signature Fn() -> Ansi

```rust // Same output as above, but without the locals variables. Keep in mind this makes reusing styles more difficult. use ansirs::{Ansi, IntoAnsi, style_text};

println!("{}", styletext("Ansirs Crate", || Ansi::new() .fg((25, 50, 250)) .bg((255, 255, 255)) .bold() .underline())); println!("{}", styletext("Simple and probably flawed library for dealing with ANSI color codes in rust!", || Ansi::new() .fg((50, 200, 50)) .bg((255, 255, 255)))); println!("{}", style_text("Definitely an awesome crate.", Ansi::new() .fg((200, 25, 25)) .bg((255, 255, 255)) .strike() .italic())); ```

Main Types

The following information is for library development, see function documentation for library specifics.

Todo