use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Cupcake"),
author: Cow::Borrowed("Chris Kempson (http://chriskempson.com)"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xfbf1f2),
fg: Color::from_hex(0x8b8198),
cursor: Some(Color::from_hex(0x8b8198)),
selection: Some(Color::from_hex(0xd8d5dd)),
line_highlight: Some(Color::from_hex(0xf2f1f4)),
gutter: Some(Color::from_hex(0xbfb9c6)),
statusbar_bg: Some(Color::from_hex(0xf2f1f4)),
statusbar_fg: Some(Color::from_hex(0xa59daf)),
comment: Some(Color::from_hex(0xbfb9c6)),
keyword: Some(Color::from_hex(0xbb99b4)),
string: Some(Color::from_hex(0xa3b367)),
function: Some(Color::from_hex(0x7297b9)),
variable: Some(Color::from_hex(0xd57e85)),
r#type: Some(Color::from_hex(0xdcb16c)),
constant: Some(Color::from_hex(0xebb790)),
operator: Some(Color::from_hex(0x8b8198)),
tag: Some(Color::from_hex(0xd57e85)),
error: Some(Color::from_hex(0xd57e85)),
warning: Some(Color::from_hex(0xdcb16c)),
info: Some(Color::from_hex(0x7297b9)),
success: Some(Color::from_hex(0xa3b367)),
red: Some(Color::from_hex(0xd57e85)),
orange: Some(Color::from_hex(0xebb790)),
yellow: Some(Color::from_hex(0xdcb16c)),
green: Some(Color::from_hex(0xa3b367)),
cyan: Some(Color::from_hex(0x69a9a7)),
blue: Some(Color::from_hex(0x7297b9)),
purple: Some(Color::from_hex(0xbb99b4)),
magenta: Some(Color::from_hex(0xbaa58c)),
};