use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Equilibrium Light"),
author: Cow::Borrowed("Carlo Abelli"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf5f0e7),
fg: Color::from_hex(0x43474e),
cursor: Some(Color::from_hex(0x43474e)),
selection: Some(Color::from_hex(0xd8d4cb)),
line_highlight: Some(Color::from_hex(0xe7e2d9)),
gutter: Some(Color::from_hex(0x73777f)),
statusbar_bg: Some(Color::from_hex(0xe7e2d9)),
statusbar_fg: Some(Color::from_hex(0x5a5f66)),
comment: Some(Color::from_hex(0x73777f)),
keyword: Some(Color::from_hex(0x4e66b6)),
string: Some(Color::from_hex(0x637200)),
function: Some(Color::from_hex(0x0073b5)),
variable: Some(Color::from_hex(0xd02023)),
r#type: Some(Color::from_hex(0x9d6f00)),
constant: Some(Color::from_hex(0xbf3e05)),
operator: Some(Color::from_hex(0x43474e)),
tag: Some(Color::from_hex(0xd02023)),
error: Some(Color::from_hex(0xd02023)),
warning: Some(Color::from_hex(0x9d6f00)),
info: Some(Color::from_hex(0x0073b5)),
success: Some(Color::from_hex(0x637200)),
red: Some(Color::from_hex(0xd02023)),
orange: Some(Color::from_hex(0xbf3e05)),
yellow: Some(Color::from_hex(0x9d6f00)),
green: Some(Color::from_hex(0x637200)),
cyan: Some(Color::from_hex(0x007a72)),
blue: Some(Color::from_hex(0x0073b5)),
purple: Some(Color::from_hex(0x4e66b6)),
magenta: Some(Color::from_hex(0xc42775)),
};