use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("peachpuff"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffdab9),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0xcccccc)),
line_highlight: Some(Color::from_hex(0xf5c195)),
gutter: Some(Color::from_hex(0xcd0000)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x406090)),
keyword: Some(Color::from_hex(0xa52a2a)),
string: None,
function: Some(Color::from_hex(0x008b8b)),
variable: Some(Color::from_hex(0x008b8b)),
r#type: Some(Color::from_hex(0x2e8b57)),
constant: Some(Color::from_hex(0xc00058)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xcd00cd)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xcd00cd)),
green: Some(Color::from_hex(0xffffff)),
cyan: Some(Color::from_hex(0x2e8b57)),
blue: Some(Color::from_hex(0x008b8b)),
purple: Some(Color::from_hex(0xa52a2a)),
magenta: Some(Color::from_hex(0xcd00cd)),
};