use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("lime"),
author: Cow::Borrowed("limelier"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x1a1a2f),
fg: Color::from_hex(0x818175),
cursor: Some(Color::from_hex(0x818175)),
selection: Some(Color::from_hex(0x2a2a3f)),
line_highlight: Some(Color::from_hex(0x202030)),
gutter: Some(Color::from_hex(0x313140)),
statusbar_bg: Some(Color::from_hex(0x202030)),
statusbar_fg: Some(Color::from_hex(0x515155)),
comment: Some(Color::from_hex(0x313140)),
keyword: Some(Color::from_hex(0x1b825f)),
string: Some(Color::from_hex(0x8cd97c)),
function: Some(Color::from_hex(0x2b926f)),
variable: Some(Color::from_hex(0xff662a)),
r#type: Some(Color::from_hex(0xffd15e)),
constant: Some(Color::from_hex(0xff773a)),
operator: Some(Color::from_hex(0x818175)),
tag: Some(Color::from_hex(0xff662a)),
error: Some(Color::from_hex(0xff662a)),
warning: Some(Color::from_hex(0xffd15e)),
info: Some(Color::from_hex(0x2b926f)),
success: Some(Color::from_hex(0x8cd97c)),
red: Some(Color::from_hex(0xff662a)),
orange: Some(Color::from_hex(0xff773a)),
yellow: Some(Color::from_hex(0xffd15e)),
green: Some(Color::from_hex(0x8cd97c)),
cyan: Some(Color::from_hex(0x4cad83)),
blue: Some(Color::from_hex(0x2b926f)),
purple: Some(Color::from_hex(0x1b825f)),
magenta: Some(Color::from_hex(0xb4d97c)),
};