use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("VIvid"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x201227),
fg: Color::from_hex(0xf2f5e9),
cursor: Some(Color::from_hex(0xbe3dff)),
selection: Some(Color::from_hex(0x6b248f)),
line_highlight: None,
gutter: Some(Color::from_hex(0xa34dce)),
statusbar_bg: Some(Color::from_hex(0x49225e)),
statusbar_fg: Some(Color::from_hex(0xa780ba)),
comment: Some(Color::from_hex(0xb9a0de)),
keyword: Some(Color::from_hex(0xff3c7d)),
string: Some(Color::from_hex(0x0f7799)),
function: Some(Color::from_hex(0xff3c7d)),
variable: Some(Color::from_hex(0xff3c7d)),
r#type: Some(Color::from_hex(0xff0a5c)),
constant: Some(Color::from_hex(0xd2ff3c)),
operator: Some(Color::from_hex(0xff3c7d)),
tag: Some(Color::from_hex(0xd1418e)),
error: Some(Color::from_hex(0xe5b1ff)),
warning: Some(Color::from_hex(0xe5b1ff)),
info: None,
success: None,
red: Some(Color::from_hex(0xe5b1ff)),
orange: None,
yellow: Some(Color::from_hex(0xe5b1ff)),
green: Some(Color::from_hex(0x0f7799)),
cyan: Some(Color::from_hex(0xff0a5c)),
blue: Some(Color::from_hex(0xff3c7d)),
purple: Some(Color::from_hex(0xff3c7d)),
magenta: Some(Color::from_hex(0x5e98bf)),
};