use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Flatland Black"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xf8f8f8),
cursor: Some(Color::from_hex(0xbbbcbd)),
selection: Some(Color::from_hex(0x515559)),
line_highlight: None,
gutter: Some(Color::from_hex(0x323232)),
statusbar_bg: Some(Color::from_hex(0x191919)),
statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
comment: Some(Color::from_hex(0x798188)),
keyword: Some(Color::from_hex(0xfa9a4b)),
string: Some(Color::from_hex(0xc4e2f2)),
function: None,
variable: Some(Color::from_hex(0xfb9a4b)),
r#type: Some(Color::from_hex(0x72aaca)),
constant: Some(Color::from_hex(0xb8d977)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xc4e2f2)),
cyan: Some(Color::from_hex(0xb8d977)),
blue: None,
purple: Some(Color::from_hex(0xfa9a4b)),
magenta: Some(Color::from_hex(0xfb9a4b)),
};