use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Embers"),
author: Cow::Borrowed("Jannik Siebert (https://github.com/janniks)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x16130f),
fg: Color::from_hex(0xa39a90),
cursor: Some(Color::from_hex(0xa39a90)),
selection: Some(Color::from_hex(0x433b32)),
line_highlight: Some(Color::from_hex(0x2c2620)),
gutter: Some(Color::from_hex(0x5a5047)),
statusbar_bg: Some(Color::from_hex(0x2c2620)),
statusbar_fg: Some(Color::from_hex(0x8a8075)),
comment: Some(Color::from_hex(0x5a5047)),
keyword: Some(Color::from_hex(0x82576d)),
string: Some(Color::from_hex(0x57826d)),
function: Some(Color::from_hex(0x6d5782)),
variable: Some(Color::from_hex(0x826d57)),
r#type: Some(Color::from_hex(0x6d8257)),
constant: Some(Color::from_hex(0x828257)),
operator: Some(Color::from_hex(0xa39a90)),
tag: Some(Color::from_hex(0x826d57)),
error: Some(Color::from_hex(0x826d57)),
warning: Some(Color::from_hex(0x6d8257)),
info: Some(Color::from_hex(0x6d5782)),
success: Some(Color::from_hex(0x57826d)),
red: Some(Color::from_hex(0x826d57)),
orange: Some(Color::from_hex(0x828257)),
yellow: Some(Color::from_hex(0x6d8257)),
green: Some(Color::from_hex(0x57826d)),
cyan: Some(Color::from_hex(0x576d82)),
blue: Some(Color::from_hex(0x6d5782)),
purple: Some(Color::from_hex(0x82576d)),
magenta: Some(Color::from_hex(0x825757)),
};