use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Black Metal (Nile)"),
author: Cow::Borrowed("metalelf0 (https://github.com/metalelf0)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xc1c1c1),
cursor: Some(Color::from_hex(0xc1c1c1)),
selection: Some(Color::from_hex(0x222222)),
line_highlight: Some(Color::from_hex(0x121212)),
gutter: Some(Color::from_hex(0x333333)),
statusbar_bg: Some(Color::from_hex(0x121212)),
statusbar_fg: Some(Color::from_hex(0x999999)),
comment: Some(Color::from_hex(0x333333)),
keyword: Some(Color::from_hex(0x999999)),
string: Some(Color::from_hex(0xaa9988)),
function: Some(Color::from_hex(0x888888)),
variable: Some(Color::from_hex(0x5f8787)),
r#type: Some(Color::from_hex(0x777755)),
constant: Some(Color::from_hex(0xaaaaaa)),
operator: Some(Color::from_hex(0xc1c1c1)),
tag: Some(Color::from_hex(0x5f8787)),
error: Some(Color::from_hex(0x5f8787)),
warning: Some(Color::from_hex(0x777755)),
info: Some(Color::from_hex(0x888888)),
success: Some(Color::from_hex(0xaa9988)),
red: Some(Color::from_hex(0x5f8787)),
orange: Some(Color::from_hex(0xaaaaaa)),
yellow: Some(Color::from_hex(0x777755)),
green: Some(Color::from_hex(0xaa9988)),
cyan: Some(Color::from_hex(0xaaaaaa)),
blue: Some(Color::from_hex(0x888888)),
purple: Some(Color::from_hex(0x999999)),
magenta: Some(Color::from_hex(0x444444)),
};