use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("spurs-away"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x9d9d9d),
cursor: Some(Color::from_hex(0xf9f9f9)),
selection: Some(Color::from_hex(0xf9f9ff)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0x4f4f4f)),
statusbar_bg: Some(Color::from_hex(0x636363)),
statusbar_fg: Some(Color::from_hex(0xd9d9d9)),
comment: Some(Color::from_hex(0x6e7070)),
keyword: Some(Color::from_hex(0xebe9df)),
string: Some(Color::from_hex(0xededed)),
function: Some(Color::from_hex(0xfcfcfc)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0xa1a6a8)),
operator: Some(Color::from_hex(0xa5a5a5)),
tag: Some(Color::from_hex(0xbd9800)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xa1a6a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xa1a6a8)),
green: Some(Color::from_hex(0xededed)),
cyan: Some(Color::from_hex(0xffffff)),
blue: Some(Color::from_hex(0xfcfcfc)),
purple: Some(Color::from_hex(0xebe9df)),
magenta: Some(Color::from_hex(0xfefefe)),
};