use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("caramel"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x5c5094),
fg: Color::from_hex(0xdca454),
cursor: Some(Color::from_hex(0xdca454)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: None,
gutter: Some(Color::from_hex(0xb4a8a8)),
statusbar_bg: Some(Color::from_hex(0x303030)),
statusbar_fg: Some(Color::from_hex(0xe0d070)),
comment: Some(Color::from_hex(0xb4a8a8)),
keyword: Some(Color::from_hex(0x8088bc)),
string: None,
function: None,
variable: Some(Color::from_hex(0xe8c47c)),
r#type: Some(Color::from_hex(0xe0d070)),
constant: Some(Color::from_hex(0x9cd464)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xb4a8a8)),
warning: Some(Color::from_hex(0xb4a8a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xb4a8a8)),
orange: None,
yellow: Some(Color::from_hex(0xb4a8a8)),
green: None,
cyan: Some(Color::from_hex(0xe0d070)),
blue: None,
purple: Some(Color::from_hex(0x8088bc)),
magenta: Some(Color::from_hex(0xe0d070)),
};