use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("PhD"),
author: Cow::Borrowed("Hennig Hasemann (http://leetless.de/vim.html)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x061229),
fg: Color::from_hex(0xb8bbc2),
cursor: Some(Color::from_hex(0xb8bbc2)),
selection: Some(Color::from_hex(0x4d5666)),
line_highlight: Some(Color::from_hex(0x2a3448)),
gutter: Some(Color::from_hex(0x717885)),
statusbar_bg: Some(Color::from_hex(0x2a3448)),
statusbar_fg: Some(Color::from_hex(0x9a99a3)),
comment: Some(Color::from_hex(0x717885)),
keyword: Some(Color::from_hex(0x9989cc)),
string: Some(Color::from_hex(0x99bf52)),
function: Some(Color::from_hex(0x5299bf)),
variable: Some(Color::from_hex(0xd07346)),
r#type: Some(Color::from_hex(0xfbd461)),
constant: Some(Color::from_hex(0xf0a000)),
operator: Some(Color::from_hex(0xb8bbc2)),
tag: Some(Color::from_hex(0xd07346)),
error: Some(Color::from_hex(0xd07346)),
warning: Some(Color::from_hex(0xfbd461)),
info: Some(Color::from_hex(0x5299bf)),
success: Some(Color::from_hex(0x99bf52)),
red: Some(Color::from_hex(0xd07346)),
orange: Some(Color::from_hex(0xf0a000)),
yellow: Some(Color::from_hex(0xfbd461)),
green: Some(Color::from_hex(0x99bf52)),
cyan: Some(Color::from_hex(0x72b9bf)),
blue: Some(Color::from_hex(0x5299bf)),
purple: Some(Color::from_hex(0x9989cc)),
magenta: Some(Color::from_hex(0xb08060)),
};