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(0x000000),
fg: Color::from_hex(0xf8f8f8),
cursor: Some(Color::from_hex(0xa7a7a7)),
selection: Some(Color::from_hex(0x2c3033)),
line_highlight: Some(Color::from_hex(0x191919)),
gutter: Some(Color::from_hex(0x7c7c7c)),
statusbar_bg: Some(Color::from_hex(0x484848)),
statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
comment: Some(Color::from_hex(0xaeaeae)),
keyword: Some(Color::from_hex(0xe28964)),
string: Some(Color::from_hex(0x65b042)),
function: Some(Color::from_hex(0x89bdff)),
variable: Some(Color::from_hex(0x99cf50)),
r#type: Some(Color::from_hex(0x89bdff)),
constant: Some(Color::from_hex(0x3387cc)),
operator: Some(Color::from_hex(0xe28964)),
tag: Some(Color::from_hex(0x89bdff)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xf8f8f8)),
green: Some(Color::from_hex(0x65b042)),
cyan: Some(Color::from_hex(0x89bdff)),
blue: Some(Color::from_hex(0x89bdff)),
purple: Some(Color::from_hex(0xe28964)),
magenta: Some(Color::from_hex(0xe28964)),
};