use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("maroloccio"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1a202a),
fg: Color::from_hex(0x8b9aaa),
cursor: Some(Color::from_hex(0x8b9aaa)),
selection: Some(Color::from_hex(0x3741ad)),
line_highlight: Some(Color::from_hex(0x0e1219)),
gutter: Some(Color::from_hex(0x2c3138)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xffd700)),
comment: Some(Color::from_hex(0x006666)),
keyword: Some(Color::from_hex(0x9966cc)),
string: Some(Color::from_hex(0x4c4cad)),
function: Some(Color::from_hex(0xffcc00)),
variable: Some(Color::from_hex(0x5fffff)),
r#type: Some(Color::from_hex(0xffcc00)),
constant: Some(Color::from_hex(0x82ade0)),
operator: Some(Color::from_hex(0x6d5279)),
tag: Some(Color::from_hex(0x3741ad)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xd70000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xd70000)),
green: Some(Color::from_hex(0x4c4cad)),
cyan: Some(Color::from_hex(0xffcc00)),
blue: Some(Color::from_hex(0xffcc00)),
purple: Some(Color::from_hex(0x9966cc)),
magenta: Some(Color::from_hex(0x107040)),
};