use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Sparky"),
author: Cow::Borrowed("Leila Sother (https://github.com/mixcoac)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x072b31),
fg: Color::from_hex(0xf4f5f0),
cursor: Some(Color::from_hex(0xf4f5f0)),
selection: Some(Color::from_hex(0x003c46)),
line_highlight: Some(Color::from_hex(0x00313c)),
gutter: Some(Color::from_hex(0x003b49)),
statusbar_bg: Some(Color::from_hex(0x00313c)),
statusbar_fg: Some(Color::from_hex(0x00778b)),
comment: Some(Color::from_hex(0x003b49)),
keyword: Some(Color::from_hex(0xd59ed7)),
string: Some(Color::from_hex(0x78d64b)),
function: Some(Color::from_hex(0x4698cb)),
variable: Some(Color::from_hex(0xff585d)),
r#type: Some(Color::from_hex(0xfbdd40)),
constant: Some(Color::from_hex(0xff8f1c)),
operator: Some(Color::from_hex(0xf4f5f0)),
tag: Some(Color::from_hex(0xff585d)),
error: Some(Color::from_hex(0xff585d)),
warning: Some(Color::from_hex(0xfbdd40)),
info: Some(Color::from_hex(0x4698cb)),
success: Some(Color::from_hex(0x78d64b)),
red: Some(Color::from_hex(0xff585d)),
orange: Some(Color::from_hex(0xff8f1c)),
yellow: Some(Color::from_hex(0xfbdd40)),
green: Some(Color::from_hex(0x78d64b)),
cyan: Some(Color::from_hex(0x2dccd3)),
blue: Some(Color::from_hex(0x4698cb)),
purple: Some(Color::from_hex(0xd59ed7)),
magenta: Some(Color::from_hex(0x9b704d)),
};