use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Precious Dark Fifteen"),
author: Cow::Borrowed("4lex4 <4lex49@zoho.com>"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x23262b),
fg: Color::from_hex(0xbab9b6),
cursor: Some(Color::from_hex(0xbab9b6)),
selection: Some(Color::from_hex(0x3e4044)),
line_highlight: Some(Color::from_hex(0x303337)),
gutter: Some(Color::from_hex(0x898989)),
statusbar_bg: Some(Color::from_hex(0x303337)),
statusbar_fg: Some(Color::from_hex(0xabaaa8)),
comment: Some(Color::from_hex(0x898989)),
keyword: Some(Color::from_hex(0xb799ff)),
string: Some(Color::from_hex(0x95b659)),
function: Some(Color::from_hex(0x66b0ef)),
variable: Some(Color::from_hex(0xff8782)),
r#type: Some(Color::from_hex(0xcfa546)),
constant: Some(Color::from_hex(0xe99857)),
operator: Some(Color::from_hex(0xbab9b6)),
tag: Some(Color::from_hex(0xff8782)),
error: Some(Color::from_hex(0xff8782)),
warning: Some(Color::from_hex(0xcfa546)),
info: Some(Color::from_hex(0x66b0ef)),
success: Some(Color::from_hex(0x95b659)),
red: Some(Color::from_hex(0xff8782)),
orange: Some(Color::from_hex(0xe99857)),
yellow: Some(Color::from_hex(0xcfa546)),
green: Some(Color::from_hex(0x95b659)),
cyan: Some(Color::from_hex(0x42bda7)),
blue: Some(Color::from_hex(0x66b0ef)),
purple: Some(Color::from_hex(0xb799ff)),
magenta: Some(Color::from_hex(0xf382d8)),
};