use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fruit"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf8f8f8),
fg: Color::from_hex(0x404040),
cursor: Some(Color::from_hex(0x00e0ff)),
selection: Some(Color::from_hex(0xe0e0e0)),
line_highlight: None,
gutter: Some(Color::from_hex(0xacacac)),
statusbar_bg: Some(Color::from_hex(0x404040)),
statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
comment: Some(Color::from_hex(0xff4080)),
keyword: Some(Color::from_hex(0xf030d0)),
string: None,
function: None,
variable: Some(Color::from_hex(0x008888)),
r#type: Some(Color::from_hex(0x0070e6)),
constant: Some(Color::from_hex(0x8016ff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x4848ff)),
cyan: Some(Color::from_hex(0x0070e6)),
blue: None,
purple: Some(Color::from_hex(0xf030d0)),
magenta: Some(Color::from_hex(0xe06800)),
};