use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Spink"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x141414),
fg: Color::from_hex(0xceb67f),
cursor: Some(Color::from_hex(0x750000)),
selection: Some(Color::from_hex(0x492224)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0x3c3836)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0x9a7824)),
comment: Some(Color::from_hex(0x515e61)),
keyword: Some(Color::from_hex(0x727152)),
string: Some(Color::from_hex(0x617689)),
function: Some(Color::from_hex(0x8a3824)),
variable: Some(Color::from_hex(0xfffedc)),
r#type: Some(Color::from_hex(0x8a905d)),
constant: Some(Color::from_hex(0x8f1d1d)),
operator: Some(Color::from_hex(0xbd9800)),
tag: Some(Color::from_hex(0xceb67f)),
error: Some(Color::from_hex(0xa1a6a8)),
warning: Some(Color::from_hex(0xa1a6a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xa1a6a8)),
orange: None,
yellow: Some(Color::from_hex(0xa1a6a8)),
green: Some(Color::from_hex(0x617689)),
cyan: Some(Color::from_hex(0x8a905d)),
blue: Some(Color::from_hex(0x8a3824)),
purple: Some(Color::from_hex(0x727152)),
magenta: Some(Color::from_hex(0xceb67f)),
};