use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Penumbra Dark Contrast Plus"),
author: Cow::Borrowed("Zachary Weiss (https://github.com/zacharyweiss)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x181b1f),
fg: Color::from_hex(0xcecece),
cursor: Some(Color::from_hex(0xcecece)),
selection: Some(Color::from_hex(0x3e4044)),
line_highlight: Some(Color::from_hex(0x24272b)),
gutter: Some(Color::from_hex(0x636363)),
statusbar_bg: Some(Color::from_hex(0x24272b)),
statusbar_fg: Some(Color::from_hex(0x9e9e9e)),
comment: Some(Color::from_hex(0x636363)),
keyword: Some(Color::from_hex(0xa48fe1)),
string: Some(Color::from_hex(0x50b584)),
function: Some(Color::from_hex(0x61a3e6)),
variable: Some(Color::from_hex(0xdf7f78)),
r#type: Some(Color::from_hex(0x9ca748)),
constant: Some(Color::from_hex(0xce9042)),
operator: Some(Color::from_hex(0xcecece)),
tag: Some(Color::from_hex(0xdf7f78)),
error: Some(Color::from_hex(0xdf7f78)),
warning: Some(Color::from_hex(0x9ca748)),
info: Some(Color::from_hex(0x61a3e6)),
success: Some(Color::from_hex(0x50b584)),
red: Some(Color::from_hex(0xdf7f78)),
orange: Some(Color::from_hex(0xce9042)),
yellow: Some(Color::from_hex(0x9ca748)),
green: Some(Color::from_hex(0x50b584)),
cyan: Some(Color::from_hex(0x00b3c2)),
blue: Some(Color::from_hex(0x61a3e6)),
purple: Some(Color::from_hex(0xa48fe1)),
magenta: Some(Color::from_hex(0xd080b6)),
};