use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("crunchbang"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2e3436),
fg: Color::from_hex(0xbfbfbf),
cursor: Some(Color::from_hex(0x999999)),
selection: Some(Color::from_hex(0x2e3436)),
line_highlight: Some(Color::from_hex(0x3b4245)),
gutter: Some(Color::from_hex(0x999999)),
statusbar_bg: Some(Color::from_hex(0x2e3436)),
statusbar_fg: Some(Color::from_hex(0x999999)),
comment: Some(Color::from_hex(0x999999)),
keyword: Some(Color::from_hex(0x6fa868)),
string: Some(Color::from_hex(0x68a6a8)),
function: Some(Color::from_hex(0x75a0bd)),
variable: Some(Color::from_hex(0x75a0bd)),
r#type: Some(Color::from_hex(0xab9a6a)),
constant: Some(Color::from_hex(0x68a6a8)),
operator: Some(Color::from_hex(0x6fa868)),
tag: Some(Color::from_hex(0xc48d93)),
error: Some(Color::from_hex(0xc48d93)),
warning: Some(Color::from_hex(0xc48d93)),
info: None,
success: None,
red: Some(Color::from_hex(0xc48d93)),
orange: None,
yellow: Some(Color::from_hex(0xc48d93)),
green: Some(Color::from_hex(0x68a6a8)),
cyan: Some(Color::from_hex(0xab9a6a)),
blue: Some(Color::from_hex(0x75a0bd)),
purple: Some(Color::from_hex(0x6fa868)),
magenta: Some(Color::from_hex(0xbf9277)),
};