use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("0x7A69_dark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1f1f1f),
fg: Color::from_hex(0xaaaaaa),
cursor: None,
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x808000)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x007f7f)),
keyword: Some(Color::from_hex(0x808000)),
string: None,
function: None,
variable: Some(Color::from_hex(0x008080)),
r#type: Some(Color::from_hex(0x008000)),
constant: Some(Color::from_hex(0xffa0a0)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: None,
cyan: Some(Color::from_hex(0x008000)),
blue: None,
purple: Some(Color::from_hex(0x808000)),
magenta: Some(Color::from_hex(0x800080)),
};