use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Hopscotch"),
author: Cow::Borrowed("Jan T. Sott"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x322931),
fg: Color::from_hex(0xb9b5b8),
cursor: Some(Color::from_hex(0xb9b5b8)),
selection: Some(Color::from_hex(0x5c545b)),
line_highlight: Some(Color::from_hex(0x433b42)),
gutter: Some(Color::from_hex(0x797379)),
statusbar_bg: Some(Color::from_hex(0x433b42)),
statusbar_fg: Some(Color::from_hex(0x989498)),
comment: Some(Color::from_hex(0x797379)),
keyword: Some(Color::from_hex(0xc85e7c)),
string: Some(Color::from_hex(0x8fc13e)),
function: Some(Color::from_hex(0x1290bf)),
variable: Some(Color::from_hex(0xdd464c)),
r#type: Some(Color::from_hex(0xfdcc59)),
constant: Some(Color::from_hex(0xfd8b19)),
operator: Some(Color::from_hex(0xb9b5b8)),
tag: Some(Color::from_hex(0xdd464c)),
error: Some(Color::from_hex(0xdd464c)),
warning: Some(Color::from_hex(0xfdcc59)),
info: Some(Color::from_hex(0x1290bf)),
success: Some(Color::from_hex(0x8fc13e)),
red: Some(Color::from_hex(0xdd464c)),
orange: Some(Color::from_hex(0xfd8b19)),
yellow: Some(Color::from_hex(0xfdcc59)),
green: Some(Color::from_hex(0x8fc13e)),
cyan: Some(Color::from_hex(0x149b93)),
blue: Some(Color::from_hex(0x1290bf)),
purple: Some(Color::from_hex(0xc85e7c)),
magenta: Some(Color::from_hex(0xb33508)),
};