use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Classic Dark"),
author: Cow::Borrowed("Jason Heeris (http://heeris.id.au)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x151515),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xd0d0d0)),
selection: Some(Color::from_hex(0x303030)),
line_highlight: Some(Color::from_hex(0x202020)),
gutter: Some(Color::from_hex(0x505050)),
statusbar_bg: Some(Color::from_hex(0x202020)),
statusbar_fg: Some(Color::from_hex(0xb0b0b0)),
comment: Some(Color::from_hex(0x505050)),
keyword: Some(Color::from_hex(0xaa759f)),
string: Some(Color::from_hex(0x90a959)),
function: Some(Color::from_hex(0x6a9fb5)),
variable: Some(Color::from_hex(0xac4142)),
r#type: Some(Color::from_hex(0xf4bf75)),
constant: Some(Color::from_hex(0xd28445)),
operator: Some(Color::from_hex(0xd0d0d0)),
tag: Some(Color::from_hex(0xac4142)),
error: Some(Color::from_hex(0xac4142)),
warning: Some(Color::from_hex(0xf4bf75)),
info: Some(Color::from_hex(0x6a9fb5)),
success: Some(Color::from_hex(0x90a959)),
red: Some(Color::from_hex(0xac4142)),
orange: Some(Color::from_hex(0xd28445)),
yellow: Some(Color::from_hex(0xf4bf75)),
green: Some(Color::from_hex(0x90a959)),
cyan: Some(Color::from_hex(0x75b5aa)),
blue: Some(Color::from_hex(0x6a9fb5)),
purple: Some(Color::from_hex(0xaa759f)),
magenta: Some(Color::from_hex(0x8f5536)),
};