use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("colorful256"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xb2b2b2),
cursor: Some(Color::from_hex(0x0087ff)),
selection: Some(Color::from_hex(0x00ffdf)),
line_highlight: None,
gutter: Some(Color::from_hex(0x00ff87)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x5f5f00)),
comment: Some(Color::from_hex(0x808000)),
keyword: Some(Color::from_hex(0x00ffff)),
string: None,
function: None,
variable: Some(Color::from_hex(0xff5fff)),
r#type: Some(Color::from_hex(0x00afff)),
constant: Some(Color::from_hex(0xff0000)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: None,
cyan: Some(Color::from_hex(0x00afff)),
blue: None,
purple: Some(Color::from_hex(0x00ffff)),
magenta: Some(Color::from_hex(0xff00ff)),
};