use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("openbsd"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x4a4a4a),
fg: Color::from_hex(0xdedede),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x0f629e)),
line_highlight: None,
gutter: Some(Color::from_hex(0x222222)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xebaf12)),
comment: Some(Color::from_hex(0x009ab5)),
keyword: Some(Color::from_hex(0xebaf12)),
string: Some(Color::from_hex(0xafafbe)),
function: Some(Color::from_hex(0xdedede)),
variable: Some(Color::from_hex(0xbf3131)),
r#type: Some(Color::from_hex(0x93bf3d)),
constant: Some(Color::from_hex(0x93bf3d)),
operator: Some(Color::from_hex(0x808080)),
tag: Some(Color::from_hex(0xbf3131)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xafafbe)),
cyan: Some(Color::from_hex(0x93bf3d)),
blue: Some(Color::from_hex(0xdedede)),
purple: Some(Color::from_hex(0xebaf12)),
magenta: Some(Color::from_hex(0xc067cc)),
};