use colored::Color as TermColor;
use iced::Color as IcedColor;
pub struct ThemeColors;
impl ThemeColors {
pub const ORANGE: IcedColor = IcedColor::from_rgb8(240, 81, 56);
pub const GRAY: IcedColor = IcedColor::from_rgb8(128, 128, 128);
pub const ORANGE_TERM: TermColor = TermColor::TrueColor {
r: 240,
g: 81,
b: 56,
};
}