use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("ron"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0x00ffff),
cursor: Some(Color::from_hex(0x60a060)),
selection: None,
line_highlight: Some(Color::from_hex(0x666666)),
gutter: Some(Color::from_hex(0xa9a9a9)),
statusbar_bg: Some(Color::from_hex(0x0000ff)),
statusbar_fg: Some(Color::from_hex(0x00ffff)),
comment: Some(Color::from_hex(0x00ff00)),
keyword: Some(Color::from_hex(0xadd8e6)),
string: Some(Color::from_hex(0x00ffff)),
function: Some(Color::from_hex(0x00ffff)),
variable: Some(Color::from_hex(0x00ffff)),
r#type: Some(Color::from_hex(0x2e8b57)),
constant: Some(Color::from_hex(0x00ffff)),
operator: Some(Color::from_hex(0xffa500)),
tag: Some(Color::from_hex(0xffff00)),
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xffff00)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xffff00)),
green: Some(Color::from_hex(0x00ffff)),
cyan: Some(Color::from_hex(0x2e8b57)),
blue: Some(Color::from_hex(0x00ffff)),
purple: Some(Color::from_hex(0xadd8e6)),
magenta: Some(Color::from_hex(0xeea9b8)),
};