use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Tomorrow"),
author: Cow::Borrowed("Chris Kempson (http://chriskempson.com)"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x373b41),
cursor: Some(Color::from_hex(0x373b41)),
selection: Some(Color::from_hex(0xc5c8c6)),
line_highlight: Some(Color::from_hex(0xe0e0e0)),
gutter: Some(Color::from_hex(0xb4b7b4)),
statusbar_bg: Some(Color::from_hex(0xe0e0e0)),
statusbar_fg: Some(Color::from_hex(0x969896)),
comment: Some(Color::from_hex(0xb4b7b4)),
keyword: Some(Color::from_hex(0x8959a8)),
string: Some(Color::from_hex(0x718c00)),
function: Some(Color::from_hex(0x4271ae)),
variable: Some(Color::from_hex(0xc82829)),
r#type: Some(Color::from_hex(0xeab700)),
constant: Some(Color::from_hex(0xf5871f)),
operator: Some(Color::from_hex(0x373b41)),
tag: Some(Color::from_hex(0xc82829)),
error: Some(Color::from_hex(0xc82829)),
warning: Some(Color::from_hex(0xeab700)),
info: Some(Color::from_hex(0x4271ae)),
success: Some(Color::from_hex(0x718c00)),
red: Some(Color::from_hex(0xc82829)),
orange: Some(Color::from_hex(0xf5871f)),
yellow: Some(Color::from_hex(0xeab700)),
green: Some(Color::from_hex(0x718c00)),
cyan: Some(Color::from_hex(0x3e999f)),
blue: Some(Color::from_hex(0x4271ae)),
purple: Some(Color::from_hex(0x8959a8)),
magenta: Some(Color::from_hex(0xa3685a)),
};