use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Boron"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x151515),
fg: Color::from_hex(0xe8e8d3),
cursor: Some(Color::from_hex(0xb0d0f0)),
selection: Some(Color::from_hex(0x404040)),
line_highlight: None,
gutter: Some(Color::from_hex(0x3f3f3b)),
statusbar_bg: Some(Color::from_hex(0x2a2a28)),
statusbar_fg: Some(Color::from_hex(0xe8e8d3)),
comment: Some(Color::from_hex(0x888888)),
keyword: None,
string: Some(Color::from_hex(0x99ad6a)),
function: Some(Color::from_hex(0xfad07a)),
variable: Some(Color::from_hex(0xffb964)),
r#type: Some(Color::from_hex(0xffb964)),
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(0x99ad6a)),
cyan: Some(Color::from_hex(0xffb964)),
blue: Some(Color::from_hex(0xfad07a)),
purple: None,
magenta: Some(Color::from_hex(0xffb964)),
};