use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("SweetCandy"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x252525),
fg: Color::from_hex(0xffffff),
cursor: None,
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x00ffff)),
statusbar_bg: Some(Color::from_hex(0x002525)),
statusbar_fg: Some(Color::from_hex(0x00ffff)),
comment: Some(Color::from_hex(0xdadada)),
keyword: Some(Color::from_hex(0xff00ff)),
string: Some(Color::from_hex(0x00ffff)),
function: Some(Color::from_hex(0xff00ff)),
variable: Some(Color::from_hex(0xff00ff)),
r#type: Some(Color::from_hex(0xdadada)),
constant: Some(Color::from_hex(0x00ffff)),
operator: Some(Color::from_hex(0xff0000)),
tag: Some(Color::from_hex(0xff00ff)),
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x00ffff)),
cyan: Some(Color::from_hex(0xdadada)),
blue: Some(Color::from_hex(0xff00ff)),
purple: Some(Color::from_hex(0xff00ff)),
magenta: Some(Color::from_hex(0x00dada)),
};