use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("maroloccio2"),
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(0x6d5279)),
line_highlight: Some(Color::from_hex(0x2c3138)),
gutter: Some(Color::from_hex(0x2c3138)),
statusbar_bg: Some(Color::from_hex(0x0e1219)),
statusbar_fg: Some(Color::from_hex(0x8b9aaa)),
comment: Some(Color::from_hex(0x6d5279)),
keyword: Some(Color::from_hex(0x2680af)),
string: Some(Color::from_hex(0x82ade0)),
function: Some(Color::from_hex(0x2680af)),
variable: None,
r#type: Some(Color::from_hex(0x2680af)),
constant: Some(Color::from_hex(0x82ade0)),
operator: Some(Color::from_hex(0x2680af)),
tag: Some(Color::from_hex(0x6d5279)),
error: Some(Color::from_hex(0x8b9aaa)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x8b9aaa)),
orange: None,
yellow: Some(Color::from_hex(0x6d5279)),
green: Some(Color::from_hex(0x82ade0)),
cyan: Some(Color::from_hex(0x2680af)),
blue: Some(Color::from_hex(0x2680af)),
purple: Some(Color::from_hex(0x2680af)),
magenta: Some(Color::from_hex(0x2680af)),
};