use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("beekai"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x111111),
fg: Color::from_hex(0xe2e2e5),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x3c414c)),
line_highlight: Some(Color::from_hex(0x111111)),
gutter: Some(Color::from_hex(0x303030)),
statusbar_bg: Some(Color::from_hex(0x303030)),
statusbar_fg: Some(Color::from_hex(0xd3d3d5)),
comment: Some(Color::from_hex(0x3f3f3f)),
keyword: Some(Color::from_hex(0xff4866)),
string: Some(Color::from_hex(0x606060)),
function: Some(Color::from_hex(0xffff00)),
variable: Some(Color::from_hex(0xd3ff3b)),
r#type: Some(Color::from_hex(0x7e8aa2)),
constant: Some(Color::from_hex(0xff4866)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff4866)),
green: Some(Color::from_hex(0x606060)),
cyan: Some(Color::from_hex(0x7e8aa2)),
blue: Some(Color::from_hex(0xffff00)),
purple: Some(Color::from_hex(0xff4866)),
magenta: Some(Color::from_hex(0x00f0ff)),
};