use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("heliotrope"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x333333)),
selection: None,
line_highlight: Some(Color::from_hex(0xcccccc)),
gutter: Some(Color::from_hex(0x032506)),
statusbar_bg: Some(Color::from_hex(0x82b687)),
statusbar_fg: Some(Color::from_hex(0x032506)),
comment: Some(Color::from_hex(0x555555)),
keyword: Some(Color::from_hex(0x111111)),
string: Some(Color::from_hex(0xa65a00)),
function: Some(Color::from_hex(0xb92503)),
variable: Some(Color::from_hex(0x445588)),
r#type: Some(Color::from_hex(0x0d4c15)),
constant: Some(Color::from_hex(0x007633)),
operator: Some(Color::from_hex(0x222222)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x007633)),
green: Some(Color::from_hex(0xa65a00)),
cyan: Some(Color::from_hex(0x0d4c15)),
blue: Some(Color::from_hex(0xb92503)),
purple: Some(Color::from_hex(0x111111)),
magenta: Some(Color::from_hex(0x111111)),
};