use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Decaf"),
author: Cow::Borrowed("Alex Mirrington (https://github.com/alexmirrington)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2d2d2d),
fg: Color::from_hex(0xcccccc),
cursor: Some(Color::from_hex(0xcccccc)),
selection: Some(Color::from_hex(0x515151)),
line_highlight: Some(Color::from_hex(0x393939)),
gutter: Some(Color::from_hex(0x777777)),
statusbar_bg: Some(Color::from_hex(0x393939)),
statusbar_fg: Some(Color::from_hex(0xb4b7b4)),
comment: Some(Color::from_hex(0x777777)),
keyword: Some(Color::from_hex(0xefb3f7)),
string: Some(Color::from_hex(0xbeda78)),
function: Some(Color::from_hex(0x90bee1)),
variable: Some(Color::from_hex(0xff7f7b)),
r#type: Some(Color::from_hex(0xffd67c)),
constant: Some(Color::from_hex(0xffbf70)),
operator: Some(Color::from_hex(0xcccccc)),
tag: Some(Color::from_hex(0xff7f7b)),
error: Some(Color::from_hex(0xff7f7b)),
warning: Some(Color::from_hex(0xffd67c)),
info: Some(Color::from_hex(0x90bee1)),
success: Some(Color::from_hex(0xbeda78)),
red: Some(Color::from_hex(0xff7f7b)),
orange: Some(Color::from_hex(0xffbf70)),
yellow: Some(Color::from_hex(0xffd67c)),
green: Some(Color::from_hex(0xbeda78)),
cyan: Some(Color::from_hex(0xbed6ff)),
blue: Some(Color::from_hex(0x90bee1)),
purple: Some(Color::from_hex(0xefb3f7)),
magenta: Some(Color::from_hex(0xff93b3)),
};