use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Apathy"),
author: Cow::Borrowed("Jannik Siebert (https://github.com/janniks)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x031a16),
fg: Color::from_hex(0x81b5ac),
cursor: Some(Color::from_hex(0x81b5ac)),
selection: Some(Color::from_hex(0x184e45)),
line_highlight: Some(Color::from_hex(0x0b342d)),
gutter: Some(Color::from_hex(0x2b685e)),
statusbar_bg: Some(Color::from_hex(0x0b342d)),
statusbar_fg: Some(Color::from_hex(0x5f9c92)),
comment: Some(Color::from_hex(0x2b685e)),
keyword: Some(Color::from_hex(0x4c963e)),
string: Some(Color::from_hex(0x883e96)),
function: Some(Color::from_hex(0x96883e)),
variable: Some(Color::from_hex(0x3e9688)),
r#type: Some(Color::from_hex(0x3e4c96)),
constant: Some(Color::from_hex(0x3e7996)),
operator: Some(Color::from_hex(0x81b5ac)),
tag: Some(Color::from_hex(0x3e9688)),
error: Some(Color::from_hex(0x3e9688)),
warning: Some(Color::from_hex(0x3e4c96)),
info: Some(Color::from_hex(0x96883e)),
success: Some(Color::from_hex(0x883e96)),
red: Some(Color::from_hex(0x3e9688)),
orange: Some(Color::from_hex(0x3e7996)),
yellow: Some(Color::from_hex(0x3e4c96)),
green: Some(Color::from_hex(0x883e96)),
cyan: Some(Color::from_hex(0x963e4c)),
blue: Some(Color::from_hex(0x96883e)),
purple: Some(Color::from_hex(0x4c963e)),
magenta: Some(Color::from_hex(0x3e965b)),
};