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