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())); ```
ansirs::Ansi
- The main struct that holds styling and formatting informationansirs::Color
- Simple color class represented as (u8, u8, u8)
ansirs::Colors
- Named (html) colors, convertable to Color
as well as Ansi
ansirs::PrettyString
- Coming Soon String-interchangeable type holding text as well as formattingall_colors_256
less cumbersome to work withcargo-llvm-cov
crate, coverage can be generated in lcov format by running cargo llvm-cov --all-features --workspace --lcov --output-path cov/lcov.info
, and can be displayed using the Coverage Gutters vscode extension (ryanluker.vscode-coverage-gutters
), or an html report can be generated using cargo llvm-cov --html
Styled
trait for designating default styling for certain types. I'm thinking something along the lines of the std::fmt family of functions, i.e. a user-defined "builder" type function is written which has access to the instance and some sort of default styling.