use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("minimalist"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xeeeeee),
cursor: Some(Color::from_hex(0xeeeeee)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x121212)),
gutter: Some(Color::from_hex(0x5f5f5f)),
statusbar_bg: Some(Color::from_hex(0x4e4e4e)),
statusbar_fg: Some(Color::from_hex(0xeeeeee)),
comment: Some(Color::from_hex(0x444444)),
keyword: Some(Color::from_hex(0xaf87d7)),
string: Some(Color::from_hex(0xafd787)),
function: Some(Color::from_hex(0x5fafd7)),
variable: Some(Color::from_hex(0xeeeeee)),
r#type: Some(Color::from_hex(0xaf87d7)),
constant: Some(Color::from_hex(0xaf87d7)),
operator: Some(Color::from_hex(0x87d7ff)),
tag: Some(Color::from_hex(0xaf87d7)),
error: Some(Color::from_hex(0xeeeeee)),
warning: Some(Color::from_hex(0xeeeeee)),
info: None,
success: None,
red: Some(Color::from_hex(0xeeeeee)),
orange: None,
yellow: Some(Color::from_hex(0xeeeeee)),
green: Some(Color::from_hex(0xafd787)),
cyan: Some(Color::from_hex(0xaf87d7)),
blue: Some(Color::from_hex(0x5fafd7)),
purple: Some(Color::from_hex(0xaf87d7)),
magenta: Some(Color::from_hex(0xaf87d7)),
};