use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("3024"),
author: Cow::Borrowed("Jan T. Sott (http://github.com/idleberg)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x090300),
fg: Color::from_hex(0xa5a2a2),
cursor: Some(Color::from_hex(0xa5a2a2)),
selection: Some(Color::from_hex(0x4a4543)),
line_highlight: Some(Color::from_hex(0x3a3432)),
gutter: Some(Color::from_hex(0x5c5855)),
statusbar_bg: Some(Color::from_hex(0x3a3432)),
statusbar_fg: Some(Color::from_hex(0x807d7c)),
comment: Some(Color::from_hex(0x5c5855)),
keyword: Some(Color::from_hex(0xa16a94)),
string: Some(Color::from_hex(0x01a252)),
function: Some(Color::from_hex(0x01a0e4)),
variable: Some(Color::from_hex(0xdb2d20)),
r#type: Some(Color::from_hex(0xfded02)),
constant: Some(Color::from_hex(0xe8bbd0)),
operator: Some(Color::from_hex(0xa5a2a2)),
tag: Some(Color::from_hex(0xdb2d20)),
error: Some(Color::from_hex(0xdb2d20)),
warning: Some(Color::from_hex(0xfded02)),
info: Some(Color::from_hex(0x01a0e4)),
success: Some(Color::from_hex(0x01a252)),
red: Some(Color::from_hex(0xdb2d20)),
orange: Some(Color::from_hex(0xe8bbd0)),
yellow: Some(Color::from_hex(0xfded02)),
green: Some(Color::from_hex(0x01a252)),
cyan: Some(Color::from_hex(0xb5e4f4)),
blue: Some(Color::from_hex(0x01a0e4)),
purple: Some(Color::from_hex(0xa16a94)),
magenta: Some(Color::from_hex(0xcdab53)),
};