use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("mopkai"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xdadada),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x403d3d)),
line_highlight: Some(Color::from_hex(0x293739)),
gutter: Some(Color::from_hex(0x465457)),
statusbar_bg: Some(Color::from_hex(0xdadada)),
statusbar_fg: Some(Color::from_hex(0x455354)),
comment: Some(Color::from_hex(0x8787af)),
keyword: Some(Color::from_hex(0x5fff00)),
string: Some(Color::from_hex(0xffffaf)),
function: Some(Color::from_hex(0x87ff00)),
variable: Some(Color::from_hex(0xff8700)),
r#type: Some(Color::from_hex(0x5fd7ff)),
constant: Some(Color::from_hex(0xaf5fff)),
operator: Some(Color::from_hex(0x5fff00)),
tag: Some(Color::from_hex(0xd7005f)),
error: Some(Color::from_hex(0xf92672)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xf92672)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xffffaf)),
cyan: Some(Color::from_hex(0x5fd7ff)),
blue: Some(Color::from_hex(0x87ff00)),
purple: Some(Color::from_hex(0x5fff00)),
magenta: Some(Color::from_hex(0x87ff00)),
};