use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hhazure"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x152535),
fg: Color::from_hex(0x7990a4),
cursor: Some(Color::from_hex(0x99ccb5)),
selection: Some(Color::from_hex(0x667888)),
line_highlight: None,
gutter: Some(Color::from_hex(0x54657d)),
statusbar_bg: Some(Color::from_hex(0x051525)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x006188)),
keyword: Some(Color::from_hex(0x74aa66)),
string: None,
function: None,
variable: Some(Color::from_hex(0x69be97)),
r#type: Some(Color::from_hex(0x429999)),
constant: Some(Color::from_hex(0x22887b)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x66bbb6)),
green: None,
cyan: Some(Color::from_hex(0x429999)),
blue: None,
purple: Some(Color::from_hex(0x74aa66)),
magenta: Some(Color::from_hex(0x557767)),
};