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