anti-hex-color
is a Rust library which color (ANSI 256-color) the given text in terminal.
Since you can specify the color with hex code, you can easily color it like CSS.
in Cargo.toml
toml
[dependencies]
ansi_hex_color = "0.1.0"
```rust use ansihexcolor;
fn main () { let foreground = "#FF0000"; let background = "#004082"; let txt = "Hello world";
let colored_txt = ansi_hex_color::colored(
foreground, background, txt);
println!("{}", colored_txt);
} ```