use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("xcode default"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0xd7d7af)),
line_highlight: None,
gutter: Some(Color::from_hex(0x626262)),
statusbar_bg: Some(Color::from_hex(0x444444)),
statusbar_fg: Some(Color::from_hex(0xb2b2b2)),
comment: Some(Color::from_hex(0x008700)),
keyword: Some(Color::from_hex(0xaf0087)),
string: Some(Color::from_hex(0xd70000)),
function: Some(Color::from_hex(0x000000)),
variable: Some(Color::from_hex(0xaf0087)),
r#type: Some(Color::from_hex(0x5f00af)),
constant: Some(Color::from_hex(0xaf0087)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xaf0087)),
green: Some(Color::from_hex(0xd70000)),
cyan: Some(Color::from_hex(0x5f00af)),
blue: Some(Color::from_hex(0x000000)),
purple: Some(Color::from_hex(0xaf0087)),
magenta: Some(Color::from_hex(0x008787)),
};