use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Darcula"),
author: Cow::Borrowed("jetbrains"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2b2b2b),
fg: Color::from_hex(0xa9b7c6),
cursor: Some(Color::from_hex(0xa9b7c6)),
selection: Some(Color::from_hex(0x323232)),
line_highlight: Some(Color::from_hex(0x323232)),
gutter: Some(Color::from_hex(0x606366)),
statusbar_bg: Some(Color::from_hex(0x323232)),
statusbar_fg: Some(Color::from_hex(0xa4a3a3)),
comment: Some(Color::from_hex(0x606366)),
keyword: Some(Color::from_hex(0xcc7832)),
string: Some(Color::from_hex(0x6a8759)),
function: Some(Color::from_hex(0x9876aa)),
variable: Some(Color::from_hex(0x4eade5)),
r#type: Some(Color::from_hex(0xbbb529)),
constant: Some(Color::from_hex(0x689757)),
operator: Some(Color::from_hex(0xa9b7c6)),
tag: Some(Color::from_hex(0x4eade5)),
error: Some(Color::from_hex(0x4eade5)),
warning: Some(Color::from_hex(0xbbb529)),
info: Some(Color::from_hex(0x9876aa)),
success: Some(Color::from_hex(0x6a8759)),
red: Some(Color::from_hex(0x4eade5)),
orange: Some(Color::from_hex(0x689757)),
yellow: Some(Color::from_hex(0xbbb529)),
green: Some(Color::from_hex(0x6a8759)),
cyan: Some(Color::from_hex(0x629755)),
blue: Some(Color::from_hex(0x9876aa)),
purple: Some(Color::from_hex(0xcc7832)),
magenta: Some(Color::from_hex(0x808080)),
};