use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Precious Dark Eleven"),
author: Cow::Borrowed("4lex4 <4lex49@zoho.com>"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1c1e20),
fg: Color::from_hex(0xb8b7b6),
cursor: Some(Color::from_hex(0xb8b7b6)),
selection: Some(Color::from_hex(0x37393a)),
line_highlight: Some(Color::from_hex(0x292b2d)),
gutter: Some(Color::from_hex(0x858585)),
statusbar_bg: Some(Color::from_hex(0x292b2d)),
statusbar_fg: Some(Color::from_hex(0xa8a8a7)),
comment: Some(Color::from_hex(0x858585)),
keyword: Some(Color::from_hex(0xb799fe)),
string: Some(Color::from_hex(0x95b658)),
function: Some(Color::from_hex(0x68b0ee)),
variable: Some(Color::from_hex(0xff8782)),
r#type: Some(Color::from_hex(0xd0a543)),
constant: Some(Color::from_hex(0xea9755)),
operator: Some(Color::from_hex(0xb8b7b6)),
tag: Some(Color::from_hex(0xff8782)),
error: Some(Color::from_hex(0xff8782)),
warning: Some(Color::from_hex(0xd0a543)),
info: Some(Color::from_hex(0x68b0ee)),
success: Some(Color::from_hex(0x95b658)),
red: Some(Color::from_hex(0xff8782)),
orange: Some(Color::from_hex(0xea9755)),
yellow: Some(Color::from_hex(0xd0a543)),
green: Some(Color::from_hex(0x95b658)),
cyan: Some(Color::from_hex(0x42bda7)),
blue: Some(Color::from_hex(0x68b0ee)),
purple: Some(Color::from_hex(0xb799fe)),
magenta: Some(Color::from_hex(0xf382d8)),
};