use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("UwUnicorn"),
author: Cow::Borrowed(
"Fernando Marques (https://github.com/RakkiUwU) and Gabriel Fontes (https://github.com/Misterio77)",
),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x241b26),
fg: Color::from_hex(0xeed5d9),
cursor: Some(Color::from_hex(0xeed5d9)),
selection: Some(Color::from_hex(0x46354a)),
line_highlight: Some(Color::from_hex(0x2f2a3f)),
gutter: Some(Color::from_hex(0x6c3cb2)),
statusbar_bg: Some(Color::from_hex(0x2f2a3f)),
statusbar_fg: Some(Color::from_hex(0x7e5f83)),
comment: Some(Color::from_hex(0x6c3cb2)),
keyword: Some(Color::from_hex(0x78a38f)),
string: Some(Color::from_hex(0xc965bf)),
function: Some(Color::from_hex(0x6a9eb5)),
variable: Some(Color::from_hex(0x877bb6)),
r#type: Some(Color::from_hex(0xa84a73)),
constant: Some(Color::from_hex(0xde5b44)),
operator: Some(Color::from_hex(0xeed5d9)),
tag: Some(Color::from_hex(0x877bb6)),
error: Some(Color::from_hex(0x877bb6)),
warning: Some(Color::from_hex(0xa84a73)),
info: Some(Color::from_hex(0x6a9eb5)),
success: Some(Color::from_hex(0xc965bf)),
red: Some(Color::from_hex(0x877bb6)),
orange: Some(Color::from_hex(0xde5b44)),
yellow: Some(Color::from_hex(0xa84a73)),
green: Some(Color::from_hex(0xc965bf)),
cyan: Some(Color::from_hex(0x9c5fce)),
blue: Some(Color::from_hex(0x6a9eb5)),
purple: Some(Color::from_hex(0x78a38f)),
magenta: Some(Color::from_hex(0xa3a079)),
};