use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("oxeded"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x242424),
fg: Color::from_hex(0xf7f7f7),
cursor: None,
selection: Some(Color::from_hex(0xf7f7f7)),
line_highlight: Some(Color::from_hex(0x424242)),
gutter: Some(Color::from_hex(0x8f8f8f)),
statusbar_bg: Some(Color::from_hex(0x5d5d5d)),
statusbar_fg: Some(Color::from_hex(0xfbfbfb)),
comment: Some(Color::from_hex(0x8f8f8f)),
keyword: Some(Color::from_hex(0x8eb33b)),
string: Some(Color::from_hex(0xf6dc69)),
function: None,
variable: Some(Color::from_hex(0x96d9f1)),
r#type: Some(Color::from_hex(0x96d9f1)),
constant: Some(Color::from_hex(0x96d9f1)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xf7f7f7)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xf7f7f7)),
orange: None,
yellow: Some(Color::from_hex(0xd7d7d7)),
green: Some(Color::from_hex(0xf6dc69)),
cyan: Some(Color::from_hex(0x96d9f1)),
blue: None,
purple: Some(Color::from_hex(0x8eb33b)),
magenta: Some(Color::from_hex(0xcdee69)),
};