use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("magicwb"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x959595),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x7b7b7b)),
selection: Some(Color::from_hex(0x444444)),
line_highlight: Some(Color::from_hex(0x2d2d2d)),
gutter: Some(Color::from_hex(0x7b7b7b)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x7b7b7b)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0xffa997)),
function: Some(Color::from_hex(0x3b67a2)),
variable: Some(Color::from_hex(0x3b67a2)),
r#type: Some(Color::from_hex(0x000000)),
constant: Some(Color::from_hex(0xafafaf)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xe7f6da)),
green: Some(Color::from_hex(0xffa997)),
cyan: Some(Color::from_hex(0x000000)),
blue: Some(Color::from_hex(0x3b67a2)),
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0x3b67a2)),
};