use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Shades of Purple"),
author: Cow::Borrowed(
"Iolar Demartini Junior (http://github.com/demartini), based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1e1e3f),
fg: Color::from_hex(0xc7c7c7),
cursor: Some(Color::from_hex(0xc7c7c7)),
selection: Some(Color::from_hex(0xf1d000)),
line_highlight: Some(Color::from_hex(0x43d426)),
gutter: Some(Color::from_hex(0x808080)),
statusbar_bg: Some(Color::from_hex(0x43d426)),
statusbar_fg: Some(Color::from_hex(0x6871ff)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xff2c70)),
string: Some(Color::from_hex(0x3ad900)),
function: Some(Color::from_hex(0x6943ff)),
variable: Some(Color::from_hex(0xd90429)),
r#type: Some(Color::from_hex(0xffe700)),
constant: Some(Color::from_hex(0xf92a1c)),
operator: Some(Color::from_hex(0xc7c7c7)),
tag: Some(Color::from_hex(0xd90429)),
error: Some(Color::from_hex(0xd90429)),
warning: Some(Color::from_hex(0xffe700)),
info: Some(Color::from_hex(0x6943ff)),
success: Some(Color::from_hex(0x3ad900)),
red: Some(Color::from_hex(0xd90429)),
orange: Some(Color::from_hex(0xf92a1c)),
yellow: Some(Color::from_hex(0xffe700)),
green: Some(Color::from_hex(0x3ad900)),
cyan: Some(Color::from_hex(0x00c5c7)),
blue: Some(Color::from_hex(0x6943ff)),
purple: Some(Color::from_hex(0xff2c70)),
magenta: Some(Color::from_hex(0x79e8fb)),
};