use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Penumbra Dark"),
author: Cow::Borrowed("Zachary Weiss (https://github.com/zacharyweiss)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x24272b),
fg: Color::from_hex(0xbebebe),
cursor: Some(Color::from_hex(0xbebebe)),
selection: Some(Color::from_hex(0x3e4044)),
line_highlight: Some(Color::from_hex(0x303338)),
gutter: Some(Color::from_hex(0x636363)),
statusbar_bg: Some(Color::from_hex(0x303338)),
statusbar_fg: Some(Color::from_hex(0x8f8f8f)),
comment: Some(Color::from_hex(0x636363)),
keyword: Some(Color::from_hex(0x9481cc)),
string: Some(Color::from_hex(0x47a477)),
function: Some(Color::from_hex(0x5794d0)),
variable: Some(Color::from_hex(0xca736c)),
r#type: Some(Color::from_hex(0x8d9741)),
constant: Some(Color::from_hex(0xba823a)),
operator: Some(Color::from_hex(0xbebebe)),
tag: Some(Color::from_hex(0xca736c)),
error: Some(Color::from_hex(0xca736c)),
warning: Some(Color::from_hex(0x8d9741)),
info: Some(Color::from_hex(0x5794d0)),
success: Some(Color::from_hex(0x47a477)),
red: Some(Color::from_hex(0xca736c)),
orange: Some(Color::from_hex(0xba823a)),
yellow: Some(Color::from_hex(0x8d9741)),
green: Some(Color::from_hex(0x47a477)),
cyan: Some(Color::from_hex(0x00a2af)),
blue: Some(Color::from_hex(0x5794d0)),
purple: Some(Color::from_hex(0x9481cc)),
magenta: Some(Color::from_hex(0xbc73a4)),
};