use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Fruit Soda"),
author: Cow::Borrowed("jozip"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf1ecf1),
fg: Color::from_hex(0x515151),
cursor: Some(Color::from_hex(0x515151)),
selection: Some(Color::from_hex(0xd8d5d5)),
line_highlight: Some(Color::from_hex(0xe0dee0)),
gutter: Some(Color::from_hex(0xb5b4b6)),
statusbar_bg: Some(Color::from_hex(0xe0dee0)),
statusbar_fg: Some(Color::from_hex(0x979598)),
comment: Some(Color::from_hex(0xb5b4b6)),
keyword: Some(Color::from_hex(0x611fce)),
string: Some(Color::from_hex(0x47f74c)),
function: Some(Color::from_hex(0x2931df)),
variable: Some(Color::from_hex(0xfe3e31)),
r#type: Some(Color::from_hex(0xf7e203)),
constant: Some(Color::from_hex(0xfe6d08)),
operator: Some(Color::from_hex(0x515151)),
tag: Some(Color::from_hex(0xfe3e31)),
error: Some(Color::from_hex(0xfe3e31)),
warning: Some(Color::from_hex(0xf7e203)),
info: Some(Color::from_hex(0x2931df)),
success: Some(Color::from_hex(0x47f74c)),
red: Some(Color::from_hex(0xfe3e31)),
orange: Some(Color::from_hex(0xfe6d08)),
yellow: Some(Color::from_hex(0xf7e203)),
green: Some(Color::from_hex(0x47f74c)),
cyan: Some(Color::from_hex(0x0f9cfd)),
blue: Some(Color::from_hex(0x2931df)),
purple: Some(Color::from_hex(0x611fce)),
magenta: Some(Color::from_hex(0xb16f40)),
};