use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hhpink"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x40202a),
fg: Color::from_hex(0xbb7899),
cursor: Some(Color::from_hex(0xcc7990)),
selection: Some(Color::from_hex(0x885672)),
line_highlight: None,
gutter: Some(Color::from_hex(0x855060)),
statusbar_bg: Some(Color::from_hex(0x200510)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x884830)),
keyword: Some(Color::from_hex(0xa466aa)),
string: None,
function: None,
variable: Some(Color::from_hex(0xbe6986)),
r#type: Some(Color::from_hex(0xaa3222)),
constant: Some(Color::from_hex(0x882223)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xbb6b66)),
green: None,
cyan: Some(Color::from_hex(0xaa3222)),
blue: None,
purple: Some(Color::from_hex(0xa466aa)),
magenta: Some(Color::from_hex(0x775561)),
};