use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("hilal"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x14171a),
fg: Color::from_hex(0xc0c6cb),
cursor: Some(Color::from_hex(0xc0c6cb)),
selection: Some(Color::from_hex(0x2a5787)),
line_highlight: Some(Color::from_hex(0x181d22)),
gutter: Some(Color::from_hex(0x343c45)),
statusbar_bg: Some(Color::from_hex(0x103040)),
statusbar_fg: Some(Color::from_hex(0xdae7ed)),
comment: Some(Color::from_hex(0x3f4f5a)),
keyword: Some(Color::from_hex(0x2c90a9)),
string: Some(Color::from_hex(0xfefede)),
function: Some(Color::from_hex(0xb46896)),
variable: Some(Color::from_hex(0x3fafd0)),
r#type: Some(Color::from_hex(0x2c90a9)),
constant: Some(Color::from_hex(0x4fafaf)),
operator: Some(Color::from_hex(0xffffff)),
tag: Some(Color::from_hex(0xffbb66)),
error: Some(Color::from_hex(0xee6a6a)),
warning: Some(Color::from_hex(0xffbb66)),
info: None,
success: None,
red: Some(Color::from_hex(0xee6a6a)),
orange: None,
yellow: Some(Color::from_hex(0xffbb66)),
green: Some(Color::from_hex(0xfefede)),
cyan: Some(Color::from_hex(0x2c90a9)),
blue: Some(Color::from_hex(0xb46896)),
purple: Some(Color::from_hex(0x2c90a9)),
magenta: Some(Color::from_hex(0x609faf)),
};