use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("PaperColor Dark"),
author: Cow::Borrowed(
"Jon Leopard (http://github.com/jonleopard), Tinted Theming (https://github.com/tinted-theming), based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0x9e9e9e),
cursor: Some(Color::from_hex(0x9e9e9e)),
selection: Some(Color::from_hex(0x424242)),
line_highlight: Some(Color::from_hex(0x363636)),
gutter: Some(Color::from_hex(0x585858)),
statusbar_bg: Some(Color::from_hex(0x363636)),
statusbar_fg: Some(Color::from_hex(0x808080)),
comment: Some(Color::from_hex(0x585858)),
keyword: Some(Color::from_hex(0xaf87d7)),
string: Some(Color::from_hex(0x5faf5f)),
function: Some(Color::from_hex(0x5fafd7)),
variable: Some(Color::from_hex(0xff5faf)),
r#type: Some(Color::from_hex(0xffaf00)),
constant: Some(Color::from_hex(0xd7af5f)),
operator: Some(Color::from_hex(0x9e9e9e)),
tag: Some(Color::from_hex(0xff5faf)),
error: Some(Color::from_hex(0xff5faf)),
warning: Some(Color::from_hex(0xffaf00)),
info: Some(Color::from_hex(0x5fafd7)),
success: Some(Color::from_hex(0x5faf5f)),
red: Some(Color::from_hex(0xff5faf)),
orange: Some(Color::from_hex(0xd7af5f)),
yellow: Some(Color::from_hex(0xffaf00)),
green: Some(Color::from_hex(0x5faf5f)),
cyan: Some(Color::from_hex(0x00afaf)),
blue: Some(Color::from_hex(0x5fafd7)),
purple: Some(Color::from_hex(0xaf87d7)),
magenta: Some(Color::from_hex(0xaf005f)),
};