use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Silk Light"),
author: Cow::Borrowed("Gabriel Fontes (https://github.com/Misterio77)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xe9f1ef),
fg: Color::from_hex(0x385156),
cursor: Some(Color::from_hex(0x385156)),
selection: Some(Color::from_hex(0x90b7b6)),
line_highlight: Some(Color::from_hex(0xccd4d3)),
gutter: Some(Color::from_hex(0x5c787b)),
statusbar_bg: Some(Color::from_hex(0xccd4d3)),
statusbar_fg: Some(Color::from_hex(0x4b5b5f)),
comment: Some(Color::from_hex(0x5c787b)),
keyword: Some(Color::from_hex(0x6e6582)),
string: Some(Color::from_hex(0x6ca38c)),
function: Some(Color::from_hex(0x39aac9)),
variable: Some(Color::from_hex(0xcf432e)),
r#type: Some(Color::from_hex(0xcfad25)),
constant: Some(Color::from_hex(0xd27f46)),
operator: Some(Color::from_hex(0x385156)),
tag: Some(Color::from_hex(0xcf432e)),
error: Some(Color::from_hex(0xcf432e)),
warning: Some(Color::from_hex(0xcfad25)),
info: Some(Color::from_hex(0x39aac9)),
success: Some(Color::from_hex(0x6ca38c)),
red: Some(Color::from_hex(0xcf432e)),
orange: Some(Color::from_hex(0xd27f46)),
yellow: Some(Color::from_hex(0xcfad25)),
green: Some(Color::from_hex(0x6ca38c)),
cyan: Some(Color::from_hex(0x329ca2)),
blue: Some(Color::from_hex(0x39aac9)),
purple: Some(Color::from_hex(0x6e6582)),
magenta: Some(Color::from_hex(0x865369)),
};