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