use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("PerfectDark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x222222),
fg: Color::from_hex(0xececec),
cursor: Some(Color::from_hex(0xaaaaaa)),
selection: Some(Color::from_hex(0x5c5c5c)),
line_highlight: Some(Color::from_hex(0x3d3d3d)),
gutter: Some(Color::from_hex(0x999999)),
statusbar_bg: Some(Color::from_hex(0x8090a0)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x999999)),
keyword: Some(Color::from_hex(0x729fcf)),
string: Some(Color::from_hex(0xed9d13)),
function: Some(Color::from_hex(0x447fcf)),
variable: Some(Color::from_hex(0x40ffff)),
r#type: Some(Color::from_hex(0x6ab825)),
constant: Some(Color::from_hex(0xed9d13)),
operator: Some(Color::from_hex(0x729fcf)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xed9d13)),
cyan: Some(Color::from_hex(0x6ab825)),
blue: Some(Color::from_hex(0x447fcf)),
purple: Some(Color::from_hex(0x729fcf)),
magenta: Some(Color::from_hex(0xae2fae)),
};