use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("dzo"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1a1a1a),
fg: Color::from_hex(0xc5c8c6),
cursor: None,
selection: Some(Color::from_hex(0x373b41)),
line_highlight: Some(Color::from_hex(0x1a1a1a)),
gutter: Some(Color::from_hex(0x373b41)),
statusbar_bg: Some(Color::from_hex(0x1a1a1a)),
statusbar_fg: Some(Color::from_hex(0x707880)),
comment: Some(Color::from_hex(0x707880)),
keyword: Some(Color::from_hex(0xdda790)),
string: Some(Color::from_hex(0x8bb664)),
function: Some(Color::from_hex(0x89bdff)),
variable: Some(Color::from_hex(0x99cf50)),
r#type: Some(Color::from_hex(0x81a2be)),
constant: Some(Color::from_hex(0x81a2be)),
operator: Some(Color::from_hex(0x89bdff)),
tag: None,
error: Some(Color::from_hex(0x1a1a1a)),
warning: Some(Color::from_hex(0xcc6666)),
info: None,
success: None,
red: Some(Color::from_hex(0x1a1a1a)),
orange: None,
yellow: Some(Color::from_hex(0xcc6666)),
green: Some(Color::from_hex(0x8bb664)),
cyan: Some(Color::from_hex(0x81a2be)),
blue: Some(Color::from_hex(0x89bdff)),
purple: Some(Color::from_hex(0xdda790)),
magenta: Some(Color::from_hex(0x89bdff)),
};