Colors

A zero-allocation no_std-compatible zero-cost way to add color to your Rust terminal to make people go owo.

Supports:

Example

```rust use owo_colors::OwoColorize;

fn main() { // Foreground colors println!("My number is {:#x}!", 10.green()); // Background colors println!("My number is not {}!", 4.on_red()); } ```

Generic colors

```rust use owocolors::OwoColorize; use owocolors::colors::*;

fn main() { // Generically color println!("My number might be {}!", 4.fg::().bg::()); } ```

Stylize

```rust use owo_colors::OwoColorize;

println!("{}", "strikethrough".strikethrough()); ```