use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("summercamp"),
author: Cow::Borrowed("zoe firi (zoefiri.github.io)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x1c1810),
fg: Color::from_hex(0x736e55),
cursor: Some(Color::from_hex(0x736e55)),
selection: Some(Color::from_hex(0x3a3527)),
line_highlight: Some(Color::from_hex(0x2a261c)),
gutter: Some(Color::from_hex(0x504b38)),
statusbar_bg: Some(Color::from_hex(0x2a261c)),
statusbar_fg: Some(Color::from_hex(0x5f5b45)),
comment: Some(Color::from_hex(0x504b38)),
keyword: Some(Color::from_hex(0xff8080)),
string: Some(Color::from_hex(0x5ceb5a)),
function: Some(Color::from_hex(0x489bf0)),
variable: Some(Color::from_hex(0xe35142)),
r#type: Some(Color::from_hex(0xf2ff27)),
constant: Some(Color::from_hex(0xfba11b)),
operator: Some(Color::from_hex(0x736e55)),
tag: Some(Color::from_hex(0xe35142)),
error: Some(Color::from_hex(0xe35142)),
warning: Some(Color::from_hex(0xf2ff27)),
info: Some(Color::from_hex(0x489bf0)),
success: Some(Color::from_hex(0x5ceb5a)),
red: Some(Color::from_hex(0xe35142)),
orange: Some(Color::from_hex(0xfba11b)),
yellow: Some(Color::from_hex(0xf2ff27)),
green: Some(Color::from_hex(0x5ceb5a)),
cyan: Some(Color::from_hex(0x5aebbc)),
blue: Some(Color::from_hex(0x489bf0)),
purple: Some(Color::from_hex(0xff8080)),
magenta: Some(Color::from_hex(0xf69be7)),
};