use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Subdued"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xd3d7cf),
cursor: None,
selection: Some(Color::from_hex(0x2e3436)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x1f1f1f)),
statusbar_fg: Some(Color::from_hex(0xeeeeec)),
comment: Some(Color::from_hex(0x61635e)),
keyword: Some(Color::from_hex(0x729fcf)),
string: Some(Color::from_hex(0x77507b)),
function: Some(Color::from_hex(0xc4a000)),
variable: None,
r#type: Some(Color::from_hex(0xad7fa8)),
constant: Some(Color::from_hex(0x4e9a06)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x77507b)),
cyan: Some(Color::from_hex(0x4e9a06)),
blue: Some(Color::from_hex(0xc4a000)),
purple: Some(Color::from_hex(0x729fcf)),
magenta: None,
};