use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("tigrana-256-light"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xdadada),
fg: Color::from_hex(0x626262),
cursor: None,
selection: Some(Color::from_hex(0x005f87)),
line_highlight: Some(Color::from_hex(0xe4e4e4)),
gutter: Some(Color::from_hex(0x949494)),
statusbar_bg: Some(Color::from_hex(0xe4e4e4)),
statusbar_fg: Some(Color::from_hex(0x626262)),
comment: Some(Color::from_hex(0x949494)),
keyword: Some(Color::from_hex(0x0087d7)),
string: Some(Color::from_hex(0xaf8700)),
function: Some(Color::from_hex(0xaf5faf)),
variable: Some(Color::from_hex(0xaf5faf)),
r#type: Some(Color::from_hex(0x5f5faf)),
constant: Some(Color::from_hex(0xaf5f00)),
operator: Some(Color::from_hex(0x0087d7)),
tag: Some(Color::from_hex(0xd75f5f)),
error: Some(Color::from_hex(0xff005f)),
warning: Some(Color::from_hex(0xaf5fd7)),
info: None,
success: None,
red: Some(Color::from_hex(0xff005f)),
orange: None,
yellow: Some(Color::from_hex(0xaf5fd7)),
green: Some(Color::from_hex(0xaf8700)),
cyan: Some(Color::from_hex(0x5f5faf)),
blue: Some(Color::from_hex(0xaf5faf)),
purple: Some(Color::from_hex(0x0087d7)),
magenta: Some(Color::from_hex(0x008700)),
};