use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("py darcula"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2b2b2b),
fg: Color::from_hex(0xa9b7c6),
cursor: Some(Color::from_hex(0x585858)),
selection: Some(Color::from_hex(0x005faf)),
line_highlight: Some(Color::from_hex(0x313335)),
gutter: Some(Color::from_hex(0x878787)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xb2b2b2)),
comment: Some(Color::from_hex(0x878787)),
keyword: Some(Color::from_hex(0x987692)),
string: Some(Color::from_hex(0x008787)),
function: Some(Color::from_hex(0xa9b7c6)),
variable: Some(Color::from_hex(0xd78700)),
r#type: Some(Color::from_hex(0xd78700)),
constant: Some(Color::from_hex(0xd78700)),
operator: Some(Color::from_hex(0xd78700)),
tag: None,
error: Some(Color::from_hex(0xa9b7c6)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xa9b7c6)),
orange: None,
yellow: Some(Color::from_hex(0xd78700)),
green: Some(Color::from_hex(0x008787)),
cyan: Some(Color::from_hex(0xd78700)),
blue: Some(Color::from_hex(0xa9b7c6)),
purple: Some(Color::from_hex(0x987692)),
magenta: Some(Color::from_hex(0xd78700)),
};