use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lyla"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x191a21),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0xf9f9ff)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: Some(Color::from_hex(0x005eff)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x707070)),
keyword: Some(Color::from_hex(0x00ff1e)),
string: Some(Color::from_hex(0x4cccff)),
function: Some(Color::from_hex(0x005eff)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0x00e1dd)),
constant: Some(Color::from_hex(0x00ff84)),
operator: Some(Color::from_hex(0x0088ff)),
tag: Some(Color::from_hex(0xbd9800)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xa1a6a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xa1a6a8)),
green: Some(Color::from_hex(0x4cccff)),
cyan: Some(Color::from_hex(0x00e1dd)),
blue: Some(Color::from_hex(0x005eff)),
purple: Some(Color::from_hex(0x00ff1e)),
magenta: Some(Color::from_hex(0x00ff1e)),
};