use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Arjen"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: None,
selection: Some(Color::from_hex(0x0000ff)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xcd5c5c)),
keyword: None,
string: Some(Color::from_hex(0xffa500)),
function: Some(Color::from_hex(0x9acd32)),
variable: Some(Color::from_hex(0x8fbc8f)),
r#type: Some(Color::from_hex(0x008000)),
constant: Some(Color::from_hex(0x7fffd4)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffa500)),
cyan: Some(Color::from_hex(0x7fffd4)),
blue: Some(Color::from_hex(0x9acd32)),
purple: None,
magenta: Some(Color::from_hex(0x8fbc8f)),
};