use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("vice"),
author: Cow::Borrowed("Thomas Leon Highbaugh thighbaugh@zoho.com"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x17191e),
fg: Color::from_hex(0x8b9cbe),
cursor: Some(Color::from_hex(0x8b9cbe)),
selection: Some(Color::from_hex(0x3c3f4c)),
line_highlight: Some(Color::from_hex(0x22262d)),
gutter: Some(Color::from_hex(0x383a47)),
statusbar_bg: Some(Color::from_hex(0x22262d)),
statusbar_fg: Some(Color::from_hex(0x555e70)),
comment: Some(Color::from_hex(0x383a47)),
keyword: Some(Color::from_hex(0x00f6d9)),
string: Some(Color::from_hex(0x0badff)),
function: Some(Color::from_hex(0x00eaff)),
variable: Some(Color::from_hex(0xff29a8)),
r#type: Some(Color::from_hex(0xf0ffaa)),
constant: Some(Color::from_hex(0x85ffe0)),
operator: Some(Color::from_hex(0x8b9cbe)),
tag: Some(Color::from_hex(0xff29a8)),
error: Some(Color::from_hex(0xff29a8)),
warning: Some(Color::from_hex(0xf0ffaa)),
info: Some(Color::from_hex(0x00eaff)),
success: Some(Color::from_hex(0x0badff)),
red: Some(Color::from_hex(0xff29a8)),
orange: Some(Color::from_hex(0x85ffe0)),
yellow: Some(Color::from_hex(0xf0ffaa)),
green: Some(Color::from_hex(0x0badff)),
cyan: Some(Color::from_hex(0x8265ff)),
blue: Some(Color::from_hex(0x00eaff)),
purple: Some(Color::from_hex(0x00f6d9)),
magenta: Some(Color::from_hex(0xff3d81)),
};