use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Equilibrium Dark"),
author: Cow::Borrowed("Carlo Abelli"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0c1118),
fg: Color::from_hex(0xafaba2),
cursor: Some(Color::from_hex(0xafaba2)),
selection: Some(Color::from_hex(0x22262d)),
line_highlight: Some(Color::from_hex(0x181c22)),
gutter: Some(Color::from_hex(0x7b776e)),
statusbar_bg: Some(Color::from_hex(0x181c22)),
statusbar_fg: Some(Color::from_hex(0x949088)),
comment: Some(Color::from_hex(0x7b776e)),
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(0xafaba2)),
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)),
};