use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("stonewashed-256"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0x87d7ff)),
line_highlight: Some(Color::from_hex(0xffffff)),
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0xaf87d7)),
statusbar_fg: Some(Color::from_hex(0xafaf87)),
comment: Some(Color::from_hex(0x6c6c6c)),
keyword: Some(Color::from_hex(0x5f0000)),
string: Some(Color::from_hex(0x005f00)),
function: Some(Color::from_hex(0x5f5fd7)),
variable: Some(Color::from_hex(0x5f5fd7)),
r#type: Some(Color::from_hex(0x00005f)),
constant: Some(Color::from_hex(0x5f0000)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xaf0000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xaf0000)),
orange: None,
yellow: Some(Color::from_hex(0x5f00ff)),
green: Some(Color::from_hex(0x005f00)),
cyan: Some(Color::from_hex(0x00005f)),
blue: Some(Color::from_hex(0x5f5fd7)),
purple: Some(Color::from_hex(0x5f0000)),
magenta: Some(Color::from_hex(0x875f00)),
};