use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Euphoria"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x00ff00),
cursor: Some(Color::from_hex(0xffff00)),
selection: Some(Color::from_hex(0x4682b4)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xff1493)),
keyword: Some(Color::from_hex(0xff0000)),
string: Some(Color::from_hex(0x00ffff)),
function: Some(Color::from_hex(0x800080)),
variable: Some(Color::from_hex(0xee82ee)),
r#type: Some(Color::from_hex(0xffff00)),
constant: Some(Color::from_hex(0x0000ff)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x00ffff)),
cyan: Some(Color::from_hex(0x0000ff)),
blue: Some(Color::from_hex(0x800080)),
purple: Some(Color::from_hex(0xff0000)),
magenta: Some(Color::from_hex(0xee82ee)),
};