use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Precious Light Warm"),
author: Cow::Borrowed("4lex4 <4lex49@zoho.com>"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfff5e5),
fg: Color::from_hex(0x4e5359),
cursor: Some(Color::from_hex(0x4e5359)),
selection: Some(Color::from_hex(0xd9d3c8)),
line_highlight: Some(Color::from_hex(0xece4d6)),
gutter: Some(Color::from_hex(0x7f8080)),
statusbar_bg: Some(Color::from_hex(0xece4d6)),
statusbar_fg: Some(Color::from_hex(0x5d6065)),
comment: Some(Color::from_hex(0x7f8080)),
keyword: Some(Color::from_hex(0x7a50c6)),
string: Some(Color::from_hex(0x557300)),
function: Some(Color::from_hex(0x246da5)),
variable: Some(Color::from_hex(0xb14745)),
r#type: Some(Color::from_hex(0x876500)),
constant: Some(Color::from_hex(0xa25600)),
operator: Some(Color::from_hex(0x4e5359)),
tag: Some(Color::from_hex(0xb14745)),
error: Some(Color::from_hex(0xb14745)),
warning: Some(Color::from_hex(0x876500)),
info: Some(Color::from_hex(0x246da5)),
success: Some(Color::from_hex(0x557300)),
red: Some(Color::from_hex(0xb14745)),
orange: Some(Color::from_hex(0xa25600)),
yellow: Some(Color::from_hex(0x876500)),
green: Some(Color::from_hex(0x557300)),
cyan: Some(Color::from_hex(0x0e7767)),
blue: Some(Color::from_hex(0x246da5)),
purple: Some(Color::from_hex(0x7a50c6)),
magenta: Some(Color::from_hex(0xa83f92)),
};