use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("babymate256"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x222429),
fg: Color::from_hex(0xe3e3e3),
cursor: Some(Color::from_hex(0xe3e3e3)),
selection: Some(Color::from_hex(0x506681)),
line_highlight: Some(Color::from_hex(0x3a3d45)),
gutter: Some(Color::from_hex(0x666666)),
statusbar_bg: Some(Color::from_hex(0xc7c7c7)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x666666)),
keyword: Some(Color::from_hex(0xffc0cb)),
string: Some(Color::from_hex(0x9cbddd)),
function: Some(Color::from_hex(0xcbf8b0)),
variable: Some(Color::from_hex(0x9cbddd)),
r#type: Some(Color::from_hex(0xcbf8b0)),
constant: Some(Color::from_hex(0xe3e3e3)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xe3e3e3)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xe3e3e3)),
orange: None,
yellow: Some(Color::from_hex(0xe3e3e3)),
green: Some(Color::from_hex(0x9cbddd)),
cyan: Some(Color::from_hex(0xcbf8b0)),
blue: Some(Color::from_hex(0xcbf8b0)),
purple: Some(Color::from_hex(0xffc0cb)),
magenta: Some(Color::from_hex(0xffc0cb)),
};