use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("disciple"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xdadada),
fg: Color::from_hex(0x444444),
cursor: Some(Color::from_hex(0x949494)),
selection: Some(Color::from_hex(0x875f5f)),
line_highlight: Some(Color::from_hex(0xd0d0d0)),
gutter: Some(Color::from_hex(0xa8a8a8)),
statusbar_bg: Some(Color::from_hex(0x8787af)),
statusbar_fg: Some(Color::from_hex(0xdadada)),
comment: Some(Color::from_hex(0xa8a8a8)),
keyword: Some(Color::from_hex(0x875f5f)),
string: Some(Color::from_hex(0x875f87)),
function: Some(Color::from_hex(0x00005f)),
variable: Some(Color::from_hex(0x87875f)),
r#type: Some(Color::from_hex(0x87875f)),
constant: Some(Color::from_hex(0x0087d7)),
operator: Some(Color::from_hex(0x875f5f)),
tag: Some(Color::from_hex(0xaf87af)),
error: Some(Color::from_hex(0x444444)),
warning: Some(Color::from_hex(0x5fafaf)),
info: None,
success: None,
red: Some(Color::from_hex(0x444444)),
orange: None,
yellow: Some(Color::from_hex(0x5fafaf)),
green: Some(Color::from_hex(0x875f87)),
cyan: Some(Color::from_hex(0x87875f)),
blue: Some(Color::from_hex(0x00005f)),
purple: Some(Color::from_hex(0x875f5f)),
magenta: Some(Color::from_hex(0xaf8787)),
};