use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Billw"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xfff8dc),
cursor: None,
selection: Some(Color::from_hex(0x696969)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xffd700)),
keyword: None,
string: Some(Color::from_hex(0xffa500)),
function: Some(Color::from_hex(0x00fa9a)),
variable: Some(Color::from_hex(0xffa07a)),
r#type: None,
constant: Some(Color::from_hex(0xfa8072)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffa500)),
cyan: Some(Color::from_hex(0xfa8072)),
blue: Some(Color::from_hex(0x00fa9a)),
purple: None,
magenta: Some(Color::from_hex(0xffa07a)),
};