use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Penumbra Light Contrast Plus Plus"),
author: Cow::Borrowed("Zachary Weiss (https://github.com/zacharyweiss)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfffdfb),
fg: Color::from_hex(0x636363),
cursor: Some(Color::from_hex(0x636363)),
selection: Some(Color::from_hex(0xf2e6d4)),
line_highlight: Some(Color::from_hex(0xfff7ed)),
gutter: Some(Color::from_hex(0xdedede)),
statusbar_bg: Some(Color::from_hex(0xfff7ed)),
statusbar_fg: Some(Color::from_hex(0xaeaeae)),
comment: Some(Color::from_hex(0xdedede)),
keyword: Some(Color::from_hex(0xb69cf6)),
string: Some(Color::from_hex(0x54c794)),
function: Some(Color::from_hex(0x6eb2fd)),
variable: Some(Color::from_hex(0xf58c81)),
r#type: Some(Color::from_hex(0xa9b852)),
constant: Some(Color::from_hex(0xe09f47)),
operator: Some(Color::from_hex(0x636363)),
tag: Some(Color::from_hex(0xf58c81)),
error: Some(Color::from_hex(0xf58c81)),
warning: Some(Color::from_hex(0xa9b852)),
info: Some(Color::from_hex(0x6eb2fd)),
success: Some(Color::from_hex(0x54c794)),
red: Some(Color::from_hex(0xf58c81)),
orange: Some(Color::from_hex(0xe09f47)),
yellow: Some(Color::from_hex(0xa9b852)),
green: Some(Color::from_hex(0x54c794)),
cyan: Some(Color::from_hex(0x00c4d7)),
blue: Some(Color::from_hex(0x6eb2fd)),
purple: Some(Color::from_hex(0xb69cf6)),
magenta: Some(Color::from_hex(0xe58cc5)),
};