use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Humanoid light"),
author: Cow::Borrowed("Thomas (tasmo) Friese"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf8f8f2),
fg: Color::from_hex(0x232629),
cursor: Some(Color::from_hex(0x232629)),
selection: Some(Color::from_hex(0xdeded8)),
line_highlight: Some(Color::from_hex(0xefefe9)),
gutter: Some(Color::from_hex(0xc0c0bd)),
statusbar_bg: Some(Color::from_hex(0xefefe9)),
statusbar_fg: Some(Color::from_hex(0x60615d)),
comment: Some(Color::from_hex(0xc0c0bd)),
keyword: Some(Color::from_hex(0x700f98)),
string: Some(Color::from_hex(0x388e3c)),
function: Some(Color::from_hex(0x0082c9)),
variable: Some(Color::from_hex(0xb0151a)),
r#type: Some(Color::from_hex(0xffb627)),
constant: Some(Color::from_hex(0xff3d00)),
operator: Some(Color::from_hex(0x232629)),
tag: Some(Color::from_hex(0xb0151a)),
error: Some(Color::from_hex(0xb0151a)),
warning: Some(Color::from_hex(0xffb627)),
info: Some(Color::from_hex(0x0082c9)),
success: Some(Color::from_hex(0x388e3c)),
red: Some(Color::from_hex(0xb0151a)),
orange: Some(Color::from_hex(0xff3d00)),
yellow: Some(Color::from_hex(0xffb627)),
green: Some(Color::from_hex(0x388e3c)),
cyan: Some(Color::from_hex(0x008e8e)),
blue: Some(Color::from_hex(0x0082c9)),
purple: Some(Color::from_hex(0x700f98)),
magenta: Some(Color::from_hex(0xb27701)),
};