use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Sunburst"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x111111),
fg: Color::from_hex(0xdddddd),
cursor: Some(Color::from_hex(0xffff00)),
selection: Some(Color::from_hex(0x4a410d)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xe6e5e4)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x666666)),
keyword: Some(Color::from_hex(0xcf6a4c)),
string: Some(Color::from_hex(0x65b042)),
function: Some(Color::from_hex(0xe9c062)),
variable: Some(Color::from_hex(0x3387cc)),
r#type: Some(Color::from_hex(0xc5af75)),
constant: Some(Color::from_hex(0x99cf50)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x65b042)),
cyan: Some(Color::from_hex(0x99cf50)),
blue: Some(Color::from_hex(0xe9c062)),
purple: Some(Color::from_hex(0xcf6a4c)),
magenta: Some(Color::from_hex(0x3387cc)),
};