use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("orange"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffb469),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0xfd6b5b)),
line_highlight: None,
gutter: Some(Color::from_hex(0x0c00b4)),
statusbar_bg: None,
statusbar_fg: Some(Color::from_hex(0x0029ff)),
comment: Some(Color::from_hex(0x0c9800)),
keyword: Some(Color::from_hex(0x0600ff)),
string: Some(Color::from_hex(0xff0003)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x0097b3)),
constant: Some(Color::from_hex(0xff0003)),
operator: Some(Color::from_hex(0x0600ff)),
tag: Some(Color::from_hex(0xe100b8)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xe100b8)),
green: Some(Color::from_hex(0xff0003)),
cyan: Some(Color::from_hex(0x0097b3)),
blue: None,
purple: Some(Color::from_hex(0x0600ff)),
magenta: Some(Color::from_hex(0x159e00)),
};