use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Penumbra Light"),
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(0xbebebe)),
statusbar_bg: Some(Color::from_hex(0xfff7ed)),
statusbar_fg: Some(Color::from_hex(0x8f8f8f)),
comment: Some(Color::from_hex(0xbebebe)),
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(0x636363)),
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)),
};