use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("greenwint"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x424242),
fg: Color::from_hex(0xf3f3f3),
cursor: Some(Color::from_hex(0x50e89c)),
selection: Some(Color::from_hex(0xbbffdd)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x616161)),
statusbar_bg: Some(Color::from_hex(0x207050)),
statusbar_fg: Some(Color::from_hex(0xd8d8d8)),
comment: Some(Color::from_hex(0x7f7f7f)),
keyword: Some(Color::from_hex(0xf3f3f3)),
string: Some(Color::from_hex(0x6bee6b)),
function: Some(Color::from_hex(0xf3f3f3)),
variable: Some(Color::from_hex(0xf3f3f3)),
r#type: Some(Color::from_hex(0x50e89c)),
constant: Some(Color::from_hex(0x50e89c)),
operator: Some(Color::from_hex(0xf3f3f3)),
tag: Some(Color::from_hex(0x0c0c0c)),
error: Some(Color::from_hex(0xf2f2f2)),
warning: Some(Color::from_hex(0x3f3f3f)),
info: None,
success: None,
red: Some(Color::from_hex(0xf2f2f2)),
orange: None,
yellow: Some(Color::from_hex(0x3f3f3f)),
green: Some(Color::from_hex(0x6bee6b)),
cyan: Some(Color::from_hex(0x50e89c)),
blue: Some(Color::from_hex(0xf3f3f3)),
purple: Some(Color::from_hex(0xf3f3f3)),
magenta: Some(Color::from_hex(0xbbffdd)),
};