use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("evolution"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1f1f1f),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xffee68)),
selection: Some(Color::from_hex(0x000000)),
line_highlight: Some(Color::from_hex(0x444444)),
gutter: Some(Color::from_hex(0x3f3f3f)),
statusbar_bg: Some(Color::from_hex(0x121212)),
statusbar_fg: Some(Color::from_hex(0xd0d0d0)),
comment: Some(Color::from_hex(0x5f5f5f)),
keyword: Some(Color::from_hex(0xe783e9)),
string: Some(Color::from_hex(0xffb539)),
function: Some(Color::from_hex(0x90cbf1)),
variable: Some(Color::from_hex(0x70bdf1)),
r#type: Some(Color::from_hex(0xffee68)),
constant: Some(Color::from_hex(0x6df584)),
operator: Some(Color::from_hex(0xfc6984)),
tag: None,
error: Some(Color::from_hex(0xd0d0d0)),
warning: Some(Color::from_hex(0x000000)),
info: None,
success: None,
red: Some(Color::from_hex(0xd0d0d0)),
orange: None,
yellow: Some(Color::from_hex(0x000000)),
green: Some(Color::from_hex(0xffb539)),
cyan: Some(Color::from_hex(0xffee68)),
blue: Some(Color::from_hex(0x90cbf1)),
purple: Some(Color::from_hex(0xe783e9)),
magenta: Some(Color::from_hex(0xbf81fa)),
};