4 releases (2 breaking)

0.3.0 Apr 3, 2023
0.2.0 Jun 18, 2022
0.1.3 Dec 13, 2021
0.1.2 Nov 6, 2021

#1442 in Parser implementations

Download history 71/week @ 2024-01-10 105/week @ 2024-01-17 82/week @ 2024-01-24 102/week @ 2024-01-31 90/week @ 2024-02-07 92/week @ 2024-02-14 138/week @ 2024-02-21 115/week @ 2024-02-28 108/week @ 2024-03-06 125/week @ 2024-03-13 134/week @ 2024-03-20 140/week @ 2024-03-27 142/week @ 2024-04-03 140/week @ 2024-04-10 143/week @ 2024-04-17 147/week @ 2024-04-24

605 downloads per month
Used in 2 crates

MIT license

16KB
311 lines

Color -> TUI

build build

Parse HEX colors to ratatui's Rgb colors.

Example

  • #C3F111 -> Color::Rgb(195,241,17)
  • #CFB -> Color::Rgb(204,255,187)
  • 142 -> Color::Indexed(142)

Usage

#[derive(Serialize, Deserialize, PartialEq)]
sruct ColorStruct {
    #[serde(with = "color_to_tui"]
    color: ratatui::style::Color,
    #[serde(with = "color_to_tui::optional"]
    optional_color: Option<ratatui::style::Color>,
}

let color_text =  r###"{ "color" : "#12FC1C", "optional_color" : "123" }"###
let t: ColorStruct = serde_json::from_str::<ColorStruct>(color_text).unwrap();

let c = ColorStruct {
    color: Color::Rgb(18, 252, 28),
    optional_color: Option<Color::Indexed(123)>,
};

assert_eq!(t, c);

Dependencies

~6MB
~103K SLoC