use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Unikitty Reversible"),
author: Cow::Borrowed("Josh W Lewis (@joshwlewis)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e2a31),
fg: Color::from_hex(0xc3c2c4),
cursor: Some(Color::from_hex(0xc3c2c4)),
selection: Some(Color::from_hex(0x69666b)),
line_highlight: Some(Color::from_hex(0x4b484e)),
gutter: Some(Color::from_hex(0x878589)),
statusbar_bg: Some(Color::from_hex(0x4b484e)),
statusbar_fg: Some(Color::from_hex(0xa5a3a6)),
comment: Some(Color::from_hex(0x878589)),
keyword: Some(Color::from_hex(0xb33ce8)),
string: Some(Color::from_hex(0x17ad98)),
function: Some(Color::from_hex(0x7864fa)),
variable: Some(Color::from_hex(0xd8137f)),
r#type: Some(Color::from_hex(0xdc8a0e)),
constant: Some(Color::from_hex(0xd65407)),
operator: Some(Color::from_hex(0xc3c2c4)),
tag: Some(Color::from_hex(0xd8137f)),
error: Some(Color::from_hex(0xd8137f)),
warning: Some(Color::from_hex(0xdc8a0e)),
info: Some(Color::from_hex(0x7864fa)),
success: Some(Color::from_hex(0x17ad98)),
red: Some(Color::from_hex(0xd8137f)),
orange: Some(Color::from_hex(0xd65407)),
yellow: Some(Color::from_hex(0xdc8a0e)),
green: Some(Color::from_hex(0x17ad98)),
cyan: Some(Color::from_hex(0x149bda)),
blue: Some(Color::from_hex(0x7864fa)),
purple: Some(Color::from_hex(0xb33ce8)),
magenta: Some(Color::from_hex(0xd41acd)),
};