use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Corn"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x333333),
fg: Color::from_hex(0xe0e0e0),
cursor: Some(Color::from_hex(0xf0f0f0)),
selection: Some(Color::from_hex(0x000000)),
line_highlight: None,
gutter: Some(Color::from_hex(0xcccccc)),
statusbar_bg: Some(Color::from_hex(0xe5e5e5)),
statusbar_fg: Some(Color::from_hex(0xb8860b)),
comment: Some(Color::from_hex(0xbbccee)),
keyword: Some(Color::from_hex(0xccee00)),
string: Some(Color::from_hex(0xeeddaa)),
function: Some(Color::from_hex(0xccee00)),
variable: Some(Color::from_hex(0xe0e0e0)),
r#type: Some(Color::from_hex(0xccee00)),
constant: Some(Color::from_hex(0xeeddaa)),
operator: Some(Color::from_hex(0xccee00)),
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(0xccee00)),
green: Some(Color::from_hex(0xeeddaa)),
cyan: Some(Color::from_hex(0xccee00)),
blue: Some(Color::from_hex(0xccee00)),
purple: Some(Color::from_hex(0xccee00)),
magenta: None,
};