use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lilydjwg_green"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0x9bedd1),
fg: Color::from_hex(0x3454ff),
cursor: Some(Color::from_hex(0x00c4ff)),
selection: Some(Color::from_hex(0xa4a4ff)),
line_highlight: Some(Color::from_hex(0xd7ffff)),
gutter: Some(Color::from_hex(0xff64cb)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x00c4ff)),
comment: Some(Color::from_hex(0x686868)),
keyword: Some(Color::from_hex(0xd86868)),
string: Some(Color::from_hex(0x10a303)),
function: Some(Color::from_hex(0x986cff)),
variable: Some(Color::from_hex(0x986cff)),
r#type: Some(Color::from_hex(0xffaf00)),
constant: Some(Color::from_hex(0x10a303)),
operator: Some(Color::from_hex(0xd86868)),
tag: Some(Color::from_hex(0xff00ff)),
error: Some(Color::from_hex(0xffaf00)),
warning: Some(Color::from_hex(0x00ffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffaf00)),
orange: None,
yellow: Some(Color::from_hex(0x00ffff)),
green: Some(Color::from_hex(0x10a303)),
cyan: Some(Color::from_hex(0xffaf00)),
blue: Some(Color::from_hex(0x986cff)),
purple: Some(Color::from_hex(0xd86868)),
magenta: Some(Color::from_hex(0x9b20d1)),
};