use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("genericdc-light"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xeeeeee),
fg: Color::from_hex(0x262626),
cursor: None,
selection: Some(Color::from_hex(0x626262)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x9e9e9e)),
keyword: Some(Color::from_hex(0x6c6c6c)),
string: Some(Color::from_hex(0x5f87d7)),
function: Some(Color::from_hex(0x585858)),
variable: Some(Color::from_hex(0x4e4e4e)),
r#type: Some(Color::from_hex(0x4e4e4e)),
constant: Some(Color::from_hex(0x3a3a3a)),
operator: Some(Color::from_hex(0x4e4e4e)),
tag: Some(Color::from_hex(0x1c1c1c)),
error: Some(Color::from_hex(0xff0000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0x1c1c1c)),
green: Some(Color::from_hex(0x5f87d7)),
cyan: Some(Color::from_hex(0x4e4e4e)),
blue: Some(Color::from_hex(0x585858)),
purple: Some(Color::from_hex(0x6c6c6c)),
magenta: Some(Color::from_hex(0x808080)),
};