use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("asmanian_blood"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x080404),
fg: Color::from_hex(0xb4b0b0),
cursor: None,
selection: Some(Color::from_hex(0x282020)),
line_highlight: Some(Color::from_hex(0x201c1c)),
gutter: Some(Color::from_hex(0x848070)),
statusbar_bg: Some(Color::from_hex(0x301810)),
statusbar_fg: Some(Color::from_hex(0xf8e0d0)),
comment: Some(Color::from_hex(0x686460)),
keyword: Some(Color::from_hex(0x506090)),
string: Some(Color::from_hex(0xa06050)),
function: Some(Color::from_hex(0x60b050)),
variable: Some(Color::from_hex(0xc0b060)),
r#type: Some(Color::from_hex(0x705850)),
constant: Some(Color::from_hex(0x60d060)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xa06050)),
green: Some(Color::from_hex(0xa06050)),
cyan: Some(Color::from_hex(0x705850)),
blue: Some(Color::from_hex(0x60b050)),
purple: Some(Color::from_hex(0x506090)),
magenta: Some(Color::from_hex(0xa090a0)),
};