use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("busierbee"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xdadada),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x000080)),
line_highlight: Some(Color::from_hex(0x1c1c1c)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xdadada)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xff8700)),
string: Some(Color::from_hex(0xafd75f)),
function: Some(Color::from_hex(0xd787d7)),
variable: Some(Color::from_hex(0xafd700)),
r#type: Some(Color::from_hex(0x8787af)),
constant: Some(Color::from_hex(0xff8700)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff8700)),
green: Some(Color::from_hex(0xafd75f)),
cyan: Some(Color::from_hex(0x8787af)),
blue: Some(Color::from_hex(0xd787d7)),
purple: Some(Color::from_hex(0xff8700)),
magenta: Some(Color::from_hex(0xffffd7)),
};