use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("candy"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xf0f0f8),
cursor: Some(Color::from_hex(0x008070)),
selection: Some(Color::from_hex(0x707080)),
line_highlight: None,
gutter: Some(Color::from_hex(0x9090a0)),
statusbar_bg: Some(Color::from_hex(0xc8c8d8)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0xc0c0d0)),
keyword: Some(Color::from_hex(0xffa0ff)),
string: None,
function: None,
variable: Some(Color::from_hex(0x40f0f0)),
r#type: Some(Color::from_hex(0xffc864)),
constant: Some(Color::from_hex(0x90d0ff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffa0ff)),
warning: Some(Color::from_hex(0xffa0ff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffa0ff)),
orange: None,
yellow: Some(Color::from_hex(0xffa0ff)),
green: Some(Color::from_hex(0xa0d0ff)),
cyan: Some(Color::from_hex(0xffc864)),
blue: None,
purple: Some(Color::from_hex(0xffa0ff)),
magenta: Some(Color::from_hex(0x40f0a0)),
};