use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Firecode"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x191919),
fg: Color::from_hex(0xf8f8f2),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x515151)),
line_highlight: None,
gutter: Some(Color::from_hex(0x464644)),
statusbar_bg: Some(Color::from_hex(0x2f2f2f)),
statusbar_fg: Some(Color::from_hex(0xf8f8f2)),
comment: Some(Color::from_hex(0x6d6d6d)),
keyword: Some(Color::from_hex(0xf63249)),
string: Some(Color::from_hex(0x97d8ea)),
function: Some(Color::from_hex(0x2e98e2)),
variable: None,
r#type: Some(Color::from_hex(0x2e98e2)),
constant: None,
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x97d8ea)),
cyan: Some(Color::from_hex(0x2e98e2)),
blue: Some(Color::from_hex(0x2e98e2)),
purple: Some(Color::from_hex(0xf63249)),
magenta: None,
};