use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fairyfloss"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x5a5475),
fg: Color::from_hex(0xf8f8f2),
cursor: None,
selection: Some(Color::from_hex(0x8077a8)),
line_highlight: Some(Color::from_hex(0x716799)),
gutter: Some(Color::from_hex(0xa8a4b1)),
statusbar_bg: Some(Color::from_hex(0x373348)),
statusbar_fg: Some(Color::from_hex(0xa8a4b1)),
comment: Some(Color::from_hex(0xe6c000)),
keyword: Some(Color::from_hex(0xffb8d1)),
string: Some(Color::from_hex(0xffea00)),
function: Some(Color::from_hex(0xfff352)),
variable: Some(Color::from_hex(0xc2ffdf)),
r#type: Some(Color::from_hex(0xfff352)),
constant: Some(Color::from_hex(0xc5a3ff)),
operator: Some(Color::from_hex(0xffb8d1)),
tag: Some(Color::from_hex(0xffb8d1)),
error: Some(Color::from_hex(0xf8f8f0)),
warning: Some(Color::from_hex(0xf8f8f0)),
info: None,
success: None,
red: Some(Color::from_hex(0xf8f8f0)),
orange: None,
yellow: Some(Color::from_hex(0xf8f8f0)),
green: Some(Color::from_hex(0xffea00)),
cyan: Some(Color::from_hex(0xfff352)),
blue: Some(Color::from_hex(0xfff352)),
purple: Some(Color::from_hex(0xffb8d1)),
magenta: Some(Color::from_hex(0xffb8d1)),
};