use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("blackdust"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x3f3f3f),
fg: Color::from_hex(0xcccccc),
cursor: Some(Color::from_hex(0xaeaeae)),
selection: Some(Color::from_hex(0xf18c96)),
line_highlight: None,
gutter: Some(Color::from_hex(0x7f7f7f)),
statusbar_bg: Some(Color::from_hex(0xf18c96)),
statusbar_fg: Some(Color::from_hex(0x333333)),
comment: Some(Color::from_hex(0x7f7f7f)),
keyword: Some(Color::from_hex(0xffffff)),
string: Some(Color::from_hex(0xcc9393)),
function: Some(Color::from_hex(0xffff8f)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0xdca3a3)),
operator: Some(Color::from_hex(0xffffff)),
tag: Some(Color::from_hex(0xdca3a3)),
error: Some(Color::from_hex(0x000000)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0x000000)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xcc9393)),
cyan: Some(Color::from_hex(0xffffff)),
blue: Some(Color::from_hex(0xffff8f)),
purple: Some(Color::from_hex(0xffffff)),
magenta: Some(Color::from_hex(0xffcfaf)),
};