use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Assemblage"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x090f10),
fg: Color::from_hex(0xf0f0e0),
cursor: Some(Color::from_hex(0xffa500)),
selection: Some(Color::from_hex(0x131d26)),
line_highlight: None,
gutter: Some(Color::from_hex(0x434844)),
statusbar_bg: Some(Color::from_hex(0x111111)),
statusbar_fg: Some(Color::from_hex(0x777777)),
comment: Some(Color::from_hex(0x008dca)),
keyword: Some(Color::from_hex(0x41bc93)),
string: Some(Color::from_hex(0x49a4c1)),
function: Some(Color::from_hex(0x2efedc)),
variable: Some(Color::from_hex(0x22ffd3)),
r#type: Some(Color::from_hex(0x81a6b4)),
constant: Some(Color::from_hex(0x00e1df)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x49a4c1)),
cyan: Some(Color::from_hex(0x00e1df)),
blue: Some(Color::from_hex(0x2efedc)),
purple: Some(Color::from_hex(0x41bc93)),
magenta: Some(Color::from_hex(0x22ffd3)),
};