use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Everforest"),
author: Cow::Borrowed("Sainnhe Park (https://github.com/sainnhe)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2d353b),
fg: Color::from_hex(0xd3c6aa),
cursor: Some(Color::from_hex(0xd3c6aa)),
selection: Some(Color::from_hex(0x475258)),
line_highlight: Some(Color::from_hex(0x343f44)),
gutter: Some(Color::from_hex(0x859289)),
statusbar_bg: Some(Color::from_hex(0x343f44)),
statusbar_fg: Some(Color::from_hex(0x9da9a0)),
comment: Some(Color::from_hex(0x859289)),
keyword: Some(Color::from_hex(0xd699b6)),
string: Some(Color::from_hex(0xa7c080)),
function: Some(Color::from_hex(0x7fbbb3)),
variable: Some(Color::from_hex(0xe67e80)),
r#type: Some(Color::from_hex(0xdbbc7f)),
constant: Some(Color::from_hex(0xe69875)),
operator: Some(Color::from_hex(0xd3c6aa)),
tag: Some(Color::from_hex(0xe67e80)),
error: Some(Color::from_hex(0xe67e80)),
warning: Some(Color::from_hex(0xdbbc7f)),
info: Some(Color::from_hex(0x7fbbb3)),
success: Some(Color::from_hex(0xa7c080)),
red: Some(Color::from_hex(0xe67e80)),
orange: Some(Color::from_hex(0xe69875)),
yellow: Some(Color::from_hex(0xdbbc7f)),
green: Some(Color::from_hex(0xa7c080)),
cyan: Some(Color::from_hex(0x83c092)),
blue: Some(Color::from_hex(0x7fbbb3)),
purple: Some(Color::from_hex(0xd699b6)),
magenta: Some(Color::from_hex(0x9da9a0)),
};