pub trait Base16Palette {
// Required methods
fn to_rgb(&self, color: Base16Color) -> (u8, u8, u8);
fn to_hex_str(&self, color: Base16Color) -> &'static str;
}pub trait Base16Palette {
// Required methods
fn to_rgb(&self, color: Base16Color) -> (u8, u8, u8);
fn to_hex_str(&self, color: Base16Color) -> &'static str;
}