use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sift"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x0c121c),
fg: Color::from_hex(0xb4dcbc),
cursor: Some(Color::from_hex(0xcad5c0)),
selection: Some(Color::from_hex(0x032f5f)),
line_highlight: None,
gutter: Some(Color::from_hex(0x207585)),
statusbar_bg: Some(Color::from_hex(0x20aaea)),
statusbar_fg: Some(Color::from_hex(0x202050)),
comment: Some(Color::from_hex(0x007868)),
keyword: Some(Color::from_hex(0xefef70)),
string: None,
function: Some(Color::from_hex(0xc08a50)),
variable: Some(Color::from_hex(0x50f0b4)),
r#type: Some(Color::from_hex(0x60e5bf)),
constant: Some(Color::from_hex(0x0ad8ff)),
operator: Some(Color::from_hex(0xf0da00)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff875f)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff875f)),
green: Some(Color::from_hex(0x05293d)),
cyan: Some(Color::from_hex(0x60e5bf)),
blue: Some(Color::from_hex(0xc08a50)),
purple: Some(Color::from_hex(0xefef70)),
magenta: Some(Color::from_hex(0xf085b4)),
};