use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkspectrum"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x2a2a2a),
fg: Color::from_hex(0xefefef),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x3465a4)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x535353)),
statusbar_bg: Some(Color::from_hex(0x3c3c3c)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x8a8a8a)),
keyword: Some(Color::from_hex(0xffffff)),
string: Some(Color::from_hex(0xfce94f)),
function: Some(Color::from_hex(0xad7fa8)),
variable: Some(Color::from_hex(0x729fcf)),
r#type: Some(Color::from_hex(0x8ae234)),
constant: Some(Color::from_hex(0xef5939)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xef5939)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xef5939)),
green: Some(Color::from_hex(0xfce94f)),
cyan: Some(Color::from_hex(0x8ae234)),
blue: Some(Color::from_hex(0xad7fa8)),
purple: Some(Color::from_hex(0xffffff)),
magenta: Some(Color::from_hex(0xffffff)),
};