use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("leya"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfffdf7),
fg: Color::from_hex(0x444444),
cursor: None,
selection: Some(Color::from_hex(0xded9c7)),
line_highlight: Some(Color::from_hex(0xeee8d5)),
gutter: None,
statusbar_bg: Some(Color::from_hex(0x268bd2)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0xcb4b16)),
keyword: Some(Color::from_hex(0x025ffd)),
string: None,
function: None,
variable: Some(Color::from_hex(0x303030)),
r#type: Some(Color::from_hex(0x2aa198)),
constant: Some(Color::from_hex(0x009900)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0x0d8322)),
cyan: Some(Color::from_hex(0x2aa198)),
blue: None,
purple: Some(Color::from_hex(0x025ffd)),
magenta: Some(Color::from_hex(0x875fff)),
};