use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("bclear"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x323232),
cursor: Some(Color::from_hex(0x323232)),
selection: Some(Color::from_hex(0x1994d1)),
line_highlight: Some(Color::from_hex(0xe1f5ff)),
gutter: Some(Color::from_hex(0x969696)),
statusbar_bg: Some(Color::from_hex(0x323232)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x969696)),
keyword: Some(Color::from_hex(0x3b6ac8)),
string: None,
function: None,
variable: Some(Color::from_hex(0x3c960f)),
r#type: Some(Color::from_hex(0xa00050)),
constant: Some(Color::from_hex(0x1094a0)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xc8c8c8)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xc8c8c8)),
green: None,
cyan: Some(Color::from_hex(0xa00050)),
blue: None,
purple: Some(Color::from_hex(0x3b6ac8)),
magenta: Some(Color::from_hex(0x294a8c)),
};