use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("mint"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x333333),
fg: Color::from_hex(0xf5f5f5),
cursor: Some(Color::from_hex(0xf0f0f0)),
selection: Some(Color::from_hex(0x777799)),
line_highlight: Some(Color::from_hex(0x666666)),
gutter: Some(Color::from_hex(0xcccccc)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x997777)),
comment: Some(Color::from_hex(0xc0c0c0)),
keyword: Some(Color::from_hex(0xccee00)),
string: Some(Color::from_hex(0xffcc99)),
function: Some(Color::from_hex(0xccee00)),
variable: Some(Color::from_hex(0xccddff)),
r#type: Some(Color::from_hex(0xccee00)),
constant: Some(Color::from_hex(0xeeddaa)),
operator: Some(Color::from_hex(0xf5f5f5)),
tag: None,
error: Some(Color::from_hex(0xf5f5f5)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xf5f5f5)),
orange: None,
yellow: Some(Color::from_hex(0xccee00)),
green: Some(Color::from_hex(0xffcc99)),
cyan: Some(Color::from_hex(0xccee00)),
blue: Some(Color::from_hex(0xccee00)),
purple: Some(Color::from_hex(0xccee00)),
magenta: None,
};