use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("donbass"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xd0d0d0),
fg: Color::from_hex(0x080808),
cursor: None,
selection: Some(Color::from_hex(0x5fafdf)),
line_highlight: None,
gutter: Some(Color::from_hex(0x444444)),
statusbar_bg: Some(Color::from_hex(0xa8a8a8)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x606060)),
keyword: Some(Color::from_hex(0x008700)),
string: Some(Color::from_hex(0x005f5f)),
function: None,
variable: Some(Color::from_hex(0x5f0000)),
r#type: Some(Color::from_hex(0x005faf)),
constant: Some(Color::from_hex(0xdf0000)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xe4e4e4)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xe4e4e4)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x005f5f)),
cyan: Some(Color::from_hex(0x005faf)),
blue: None,
purple: Some(Color::from_hex(0x008700)),
magenta: Some(Color::from_hex(0x00875f)),
};