use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Occidental"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffea),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x00bbff)),
selection: Some(Color::from_hex(0xc2d5e9)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xeaffff)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x204a87)),
keyword: Some(Color::from_hex(0xa52a2a)),
string: Some(Color::from_hex(0x4e9a06)),
function: Some(Color::from_hex(0x00578e)),
variable: Some(Color::from_hex(0x0084c8)),
r#type: Some(Color::from_hex(0x2f8b58)),
constant: Some(Color::from_hex(0xf5666d)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xb50000)),
warning: Some(Color::from_hex(0xce5c00)),
info: None,
success: Some(Color::from_hex(0x4e9a06)),
red: Some(Color::from_hex(0xb50000)),
orange: None,
yellow: Some(Color::from_hex(0xce5c00)),
green: Some(Color::from_hex(0x4e9a06)),
cyan: Some(Color::from_hex(0xf5666d)),
blue: Some(Color::from_hex(0x00578e)),
purple: Some(Color::from_hex(0xa52a2a)),
magenta: Some(Color::from_hex(0x0084c8)),
};