use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("telstar"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x000022),
fg: Color::from_hex(0x5060c0),
cursor: Some(Color::from_hex(0xaaaaaa)),
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x604060)),
keyword: Some(Color::from_hex(0x8070b0)),
string: Some(Color::from_hex(0x999999)),
function: None,
variable: Some(Color::from_hex(0x686888)),
r#type: Some(Color::from_hex(0x9060c8)),
constant: Some(Color::from_hex(0x9060c8)),
operator: Some(Color::from_hex(0x8080c0)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x604060)),
orange: None,
yellow: Some(Color::from_hex(0x807087)),
green: Some(Color::from_hex(0x999999)),
cyan: Some(Color::from_hex(0x9060c8)),
blue: None,
purple: Some(Color::from_hex(0x8070b0)),
magenta: None,
};