use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("256_noir"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xbcbcbc),
cursor: Some(Color::from_hex(0x8a8a8a)),
selection: Some(Color::from_hex(0xbcbcbc)),
line_highlight: None,
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xeeeeee)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xeeeeee)),
string: Some(Color::from_hex(0x8a8a8a)),
function: Some(Color::from_hex(0xeeeeee)),
variable: Some(Color::from_hex(0xbcbcbc)),
r#type: Some(Color::from_hex(0xeeeeee)),
constant: Some(Color::from_hex(0xd0d0d0)),
operator: Some(Color::from_hex(0xeeeeee)),
tag: Some(Color::from_hex(0xff0000)),
error: Some(Color::from_hex(0xeeeeee)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xeeeeee)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x8a8a8a)),
cyan: Some(Color::from_hex(0xeeeeee)),
blue: Some(Color::from_hex(0xeeeeee)),
purple: Some(Color::from_hex(0xeeeeee)),
magenta: Some(Color::from_hex(0xeeeeee)),
};