use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("frozen"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x202020),
fg: Color::from_hex(0xadc7dc),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x3c414c)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xd3d3d5)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x7b9c9c)),
string: Some(Color::from_hex(0x7aa6c7)),
function: Some(Color::from_hex(0x5a90b9)),
variable: Some(Color::from_hex(0x7fb2e5)),
r#type: Some(Color::from_hex(0x7e8aa2)),
constant: Some(Color::from_hex(0x7b9c9c)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x5b8484)),
green: Some(Color::from_hex(0x7aa6c7)),
cyan: Some(Color::from_hex(0x7e8aa2)),
blue: Some(Color::from_hex(0x5a90b9)),
purple: Some(Color::from_hex(0x7b9c9c)),
magenta: Some(Color::from_hex(0xfaf4c6)),
};