use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("IR Black"),
author: Cow::Borrowed("Timothée Poisot (http://timotheepoisot.fr)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xb5b3aa),
cursor: Some(Color::from_hex(0xb5b3aa)),
selection: Some(Color::from_hex(0x484844)),
line_highlight: Some(Color::from_hex(0x242422)),
gutter: Some(Color::from_hex(0x6c6c66)),
statusbar_bg: Some(Color::from_hex(0x242422)),
statusbar_fg: Some(Color::from_hex(0x918f88)),
comment: Some(Color::from_hex(0x6c6c66)),
keyword: Some(Color::from_hex(0xff73fd)),
string: Some(Color::from_hex(0xa8ff60)),
function: Some(Color::from_hex(0x96cbfe)),
variable: Some(Color::from_hex(0xff6c60)),
r#type: Some(Color::from_hex(0xffffb6)),
constant: Some(Color::from_hex(0xe9c062)),
operator: Some(Color::from_hex(0xb5b3aa)),
tag: Some(Color::from_hex(0xff6c60)),
error: Some(Color::from_hex(0xff6c60)),
warning: Some(Color::from_hex(0xffffb6)),
info: Some(Color::from_hex(0x96cbfe)),
success: Some(Color::from_hex(0xa8ff60)),
red: Some(Color::from_hex(0xff6c60)),
orange: Some(Color::from_hex(0xe9c062)),
yellow: Some(Color::from_hex(0xffffb6)),
green: Some(Color::from_hex(0xa8ff60)),
cyan: Some(Color::from_hex(0xc6c5fe)),
blue: Some(Color::from_hex(0x96cbfe)),
purple: Some(Color::from_hex(0xff73fd)),
magenta: Some(Color::from_hex(0xb18a3d)),
};