use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Equilibrium Gray Dark"),
author: Cow::Borrowed("Carlo Abelli"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x111111),
fg: Color::from_hex(0xababab),
cursor: Some(Color::from_hex(0xababab)),
selection: Some(Color::from_hex(0x262626)),
line_highlight: Some(Color::from_hex(0x1b1b1b)),
gutter: Some(Color::from_hex(0x777777)),
statusbar_bg: Some(Color::from_hex(0x1b1b1b)),
statusbar_fg: Some(Color::from_hex(0x919191)),
comment: Some(Color::from_hex(0x777777)),
keyword: Some(Color::from_hex(0x6a7fd2)),
string: Some(Color::from_hex(0x7f8b00)),
function: Some(Color::from_hex(0x008dd1)),
variable: Some(Color::from_hex(0xf04339)),
r#type: Some(Color::from_hex(0xbb8801)),
constant: Some(Color::from_hex(0xdf5923)),
operator: Some(Color::from_hex(0xababab)),
tag: Some(Color::from_hex(0xf04339)),
error: Some(Color::from_hex(0xf04339)),
warning: Some(Color::from_hex(0xbb8801)),
info: Some(Color::from_hex(0x008dd1)),
success: Some(Color::from_hex(0x7f8b00)),
red: Some(Color::from_hex(0xf04339)),
orange: Some(Color::from_hex(0xdf5923)),
yellow: Some(Color::from_hex(0xbb8801)),
green: Some(Color::from_hex(0x7f8b00)),
cyan: Some(Color::from_hex(0x00948b)),
blue: Some(Color::from_hex(0x008dd1)),
purple: Some(Color::from_hex(0x6a7fd2)),
magenta: Some(Color::from_hex(0xe3488e)),
};