use ratatui::style::Color;
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Base) for theme-aware lookup"
)]
pub const SOLARIZED_BASE03: Color = Color::Rgb(0, 43, 54);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Surface2) for theme-aware lookup"
)]
pub const SOLARIZED_BASE02: Color = Color::Rgb(7, 54, 66);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Subtext0) or NamedColor::Overlay* for theme-aware lookup"
)]
pub const SOLARIZED_BASE01: Color = Color::Rgb(88, 110, 117);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Subtext1) for theme-aware lookup"
)]
pub const SOLARIZED_BASE0: Color = Color::Rgb(131, 148, 150);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Text) for theme-aware lookup"
)]
pub const SOLARIZED_BASE1: Color = Color::Rgb(147, 161, 161);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Blue) or NamedColor::Sapphire for theme-aware lookup"
)]
pub const SOLARIZED_BLUE: Color = Color::Rgb(38, 139, 210);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Sky) or NamedColor::Teal for theme-aware lookup"
)]
pub const SOLARIZED_CYAN: Color = Color::Rgb(42, 161, 152);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Green) for theme-aware lookup"
)]
pub const SOLARIZED_GREEN: Color = Color::Rgb(133, 153, 0);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Yellow) for theme-aware lookup"
)]
pub const SOLARIZED_YELLOW: Color = Color::Rgb(181, 137, 0);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Peach) for theme-aware lookup"
)]
pub const SOLARIZED_ORANGE: Color = Color::Rgb(203, 75, 22);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Red) for theme-aware lookup"
)]
pub const SOLARIZED_RED: Color = Color::Rgb(220, 50, 47);
#[deprecated(
since = "0.17.0",
note = "use theme.color(NamedColor::Pink) or NamedColor::Mauve for theme-aware lookup"
)]
pub const SOLARIZED_MAGENTA: Color = Color::Rgb(211, 54, 130);