use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkrobot"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1d1d1d),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0x2424ff)),
selection: Some(Color::from_hex(0x07077b)),
line_highlight: None,
gutter: Some(Color::from_hex(0xb8b8b8)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xb8b8b8)),
comment: Some(Color::from_hex(0xb8b8b8)),
keyword: Some(Color::from_hex(0xff6262)),
string: None,
function: None,
variable: Some(Color::from_hex(0x7efaff)),
r#type: Some(Color::from_hex(0xfeffba)),
constant: Some(Color::from_hex(0xdac5ff)),
operator: None,
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(0x466eff)),
green: Some(Color::from_hex(0x07af07)),
cyan: Some(Color::from_hex(0xfeffba)),
blue: None,
purple: Some(Color::from_hex(0xff6262)),
magenta: Some(Color::from_hex(0xffa41b)),
};