use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("predawn"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x282828),
fg: Color::from_hex(0xf1f1f1),
cursor: Some(Color::from_hex(0xf18260)),
selection: Some(Color::from_hex(0x4c4c4c)),
line_highlight: Some(Color::from_hex(0x3c3c3c)),
gutter: Some(Color::from_hex(0x8d8d8d)),
statusbar_bg: Some(Color::from_hex(0x626262)),
statusbar_fg: Some(Color::from_hex(0xf1f1f1)),
comment: Some(Color::from_hex(0x777777)),
keyword: Some(Color::from_hex(0xf49d62)),
string: Some(Color::from_hex(0xbddcdc)),
function: Some(Color::from_hex(0x92bfbf)),
variable: Some(Color::from_hex(0xecec89)),
r#type: Some(Color::from_hex(0x92bfbf)),
constant: Some(Color::from_hex(0xecec89)),
operator: Some(Color::from_hex(0xf49d62)),
tag: Some(Color::from_hex(0x92bfbf)),
error: Some(Color::from_hex(0xcf5340)),
warning: Some(Color::from_hex(0xcf5340)),
info: None,
success: None,
red: Some(Color::from_hex(0xcf5340)),
orange: None,
yellow: Some(Color::from_hex(0xcf5340)),
green: Some(Color::from_hex(0xbddcdc)),
cyan: Some(Color::from_hex(0x92bfbf)),
blue: Some(Color::from_hex(0x92bfbf)),
purple: Some(Color::from_hex(0xf49d62)),
magenta: Some(Color::from_hex(0xf49d62)),
};