use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Still Alive"),
author: Cow::Borrowed(
"Derrick McKee (derrick.mckee@gmail.com), Tinted Theming (https://github.com/tinted-theming)",
),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf0f0f0),
fg: Color::from_hex(0x4c383b),
cursor: Some(Color::from_hex(0x4c383b)),
selection: Some(Color::from_hex(0xbdbdbd)),
line_highlight: Some(Color::from_hex(0xd6d6d6)),
gutter: Some(Color::from_hex(0xa3a3a3)),
statusbar_bg: Some(Color::from_hex(0xd6d6d6)),
statusbar_fg: Some(Color::from_hex(0x605758)),
comment: Some(Color::from_hex(0xa3a3a3)),
keyword: Some(Color::from_hex(0x9036ff)),
string: Some(Color::from_hex(0x30a860)),
function: Some(Color::from_hex(0x365eff)),
variable: Some(Color::from_hex(0xd80000)),
r#type: Some(Color::from_hex(0xfff018)),
constant: Some(Color::from_hex(0xf0d848)),
operator: Some(Color::from_hex(0x4c383b)),
tag: Some(Color::from_hex(0xd80000)),
error: Some(Color::from_hex(0xd80000)),
warning: Some(Color::from_hex(0xfff018)),
info: Some(Color::from_hex(0x365eff)),
success: Some(Color::from_hex(0x30a860)),
red: Some(Color::from_hex(0xd80000)),
orange: Some(Color::from_hex(0xf0d848)),
yellow: Some(Color::from_hex(0xfff018)),
green: Some(Color::from_hex(0x30a860)),
cyan: Some(Color::from_hex(0x36d3ff)),
blue: Some(Color::from_hex(0x365eff)),
purple: Some(Color::from_hex(0x9036ff)),
magenta: Some(Color::from_hex(0x140c0d)),
};