use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Pastels On Dark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x211d1d),
fg: Color::from_hex(0xdadada),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x322a31)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xed5b15)),
keyword: Some(Color::from_hex(0x4856f7)),
string: Some(Color::from_hex(0xa2925e)),
function: Some(Color::from_hex(0xa1a1ff)),
variable: Some(Color::from_hex(0xc1c144)),
r#type: Some(Color::from_hex(0xdadada)),
constant: Some(Color::from_hex(0xdf7921)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xb20006)),
warning: Some(Color::from_hex(0xff8000)),
info: None,
success: Some(Color::from_hex(0x00dd00)),
red: Some(Color::from_hex(0xb20006)),
orange: None,
yellow: Some(Color::from_hex(0xff8000)),
green: Some(Color::from_hex(0xa2925e)),
cyan: Some(Color::from_hex(0xdf7921)),
blue: Some(Color::from_hex(0xa1a1ff)),
purple: Some(Color::from_hex(0x4856f7)),
magenta: Some(Color::from_hex(0xc1c144)),
};