use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("scite"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x7f6f5f),
cursor: Some(Color::from_hex(0x000000)),
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x000000)),
statusbar_bg: Some(Color::from_hex(0xaacccc)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x007f00)),
keyword: Some(Color::from_hex(0x007f7f)),
string: Some(Color::from_hex(0x7f007f)),
function: Some(Color::from_hex(0x007f7f)),
variable: None,
r#type: Some(Color::from_hex(0x0000ff)),
constant: Some(Color::from_hex(0x000000)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x7f007f)),
green: Some(Color::from_hex(0x7f007f)),
cyan: Some(Color::from_hex(0x0000ff)),
blue: Some(Color::from_hex(0x007f7f)),
purple: Some(Color::from_hex(0x007f7f)),
magenta: Some(Color::from_hex(0x0000ff)),
};