use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("boltzmann"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xeeeeee),
cursor: Some(Color::from_hex(0x5f00af)),
selection: Some(Color::from_hex(0x3465a4)),
line_highlight: Some(Color::from_hex(0x444444)),
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(0xff5f00)),
keyword: Some(Color::from_hex(0x808080)),
string: Some(Color::from_hex(0xafff00)),
function: None,
variable: Some(Color::from_hex(0x729fcf)),
r#type: Some(Color::from_hex(0xffd700)),
constant: Some(Color::from_hex(0xafff5f)),
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(0xafff00)),
cyan: Some(Color::from_hex(0xffd700)),
blue: None,
purple: Some(Color::from_hex(0x808080)),
magenta: Some(Color::from_hex(0xaf87af)),
};