use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("pablo"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0xa9a9a9)),
line_highlight: Some(Color::from_hex(0x3a3a3a)),
gutter: Some(Color::from_hex(0x7f7f7f)),
statusbar_bg: Some(Color::from_hex(0x0000ee)),
statusbar_fg: Some(Color::from_hex(0xffff00)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xc0c000)),
string: None,
function: Some(Color::from_hex(0x00c0c0)),
variable: Some(Color::from_hex(0x00c0c0)),
r#type: Some(Color::from_hex(0x00c000)),
constant: Some(Color::from_hex(0x00ffff)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xffffff)),
cyan: Some(Color::from_hex(0x00c000)),
blue: Some(Color::from_hex(0x00c0c0)),
purple: Some(Color::from_hex(0xc0c000)),
magenta: Some(Color::from_hex(0x00ff00)),
};