use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Soft Charcoal"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x191919),
fg: Color::from_hex(0xc2c2c2),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x3c414c)),
line_highlight: Some(Color::from_hex(0x252525)),
gutter: None,
statusbar_bg: Some(Color::from_hex(0x202020)),
statusbar_fg: Some(Color::from_hex(0xbabdb6)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x8aa234)),
string: Some(Color::from_hex(0x5d90cd)),
function: Some(Color::from_hex(0x7a8bbd)),
variable: Some(Color::from_hex(0x8885b2)),
r#type: Some(Color::from_hex(0x8aa6c1)),
constant: Some(Color::from_hex(0x8aa6c1)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x5d90cd)),
cyan: Some(Color::from_hex(0x8aa6c1)),
blue: Some(Color::from_hex(0x7a8bbd)),
purple: Some(Color::from_hex(0x8aa234)),
magenta: Some(Color::from_hex(0x8885b2)),
};