use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("tender"),
author: Cow::Borrowed("Jacobo Tabernero (https://github/com/jacoborus/tender.vim)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x282828),
fg: Color::from_hex(0xeeeeee),
cursor: Some(Color::from_hex(0xeeeeee)),
selection: Some(Color::from_hex(0x484848)),
line_highlight: Some(Color::from_hex(0x383838)),
gutter: Some(Color::from_hex(0x4c4c4c)),
statusbar_bg: Some(Color::from_hex(0x383838)),
statusbar_fg: Some(Color::from_hex(0xb8b8b8)),
comment: Some(Color::from_hex(0x4c4c4c)),
keyword: Some(Color::from_hex(0xd3b987)),
string: Some(Color::from_hex(0xc9d05c)),
function: Some(Color::from_hex(0xb3deef)),
variable: Some(Color::from_hex(0xf43753)),
r#type: Some(Color::from_hex(0xffc24b)),
constant: Some(Color::from_hex(0xdc9656)),
operator: Some(Color::from_hex(0xeeeeee)),
tag: Some(Color::from_hex(0xf43753)),
error: Some(Color::from_hex(0xf43753)),
warning: Some(Color::from_hex(0xffc24b)),
info: Some(Color::from_hex(0xb3deef)),
success: Some(Color::from_hex(0xc9d05c)),
red: Some(Color::from_hex(0xf43753)),
orange: Some(Color::from_hex(0xdc9656)),
yellow: Some(Color::from_hex(0xffc24b)),
green: Some(Color::from_hex(0xc9d05c)),
cyan: Some(Color::from_hex(0x73cef4)),
blue: Some(Color::from_hex(0xb3deef)),
purple: Some(Color::from_hex(0xd3b987)),
magenta: Some(Color::from_hex(0xa16946)),
};