use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("eris"),
author: Cow::Borrowed(
"ed (https://codeberg.org/ed), Tinted Theming (https://github.com/tinted-theming)",
),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x0a0920),
fg: Color::from_hex(0x606bac),
cursor: Some(Color::from_hex(0x606bac)),
selection: Some(Color::from_hex(0x23255a)),
line_highlight: Some(Color::from_hex(0x13133a)),
gutter: Some(Color::from_hex(0x333773)),
statusbar_bg: Some(Color::from_hex(0x13133a)),
statusbar_fg: Some(Color::from_hex(0x4a5293)),
comment: Some(Color::from_hex(0x333773)),
keyword: Some(Color::from_hex(0xc368f7)),
string: Some(Color::from_hex(0xa2faa8)),
function: Some(Color::from_hex(0x258fc4)),
variable: Some(Color::from_hex(0xf768a3)),
r#type: Some(Color::from_hex(0xf7d668)),
constant: Some(Color::from_hex(0xf78968)),
operator: Some(Color::from_hex(0x606bac)),
tag: Some(Color::from_hex(0xf768a3)),
error: Some(Color::from_hex(0xf768a3)),
warning: Some(Color::from_hex(0xf7d668)),
info: Some(Color::from_hex(0x258fc4)),
success: Some(Color::from_hex(0xa2faa8)),
red: Some(Color::from_hex(0xf768a3)),
orange: Some(Color::from_hex(0xf78968)),
yellow: Some(Color::from_hex(0xf7d668)),
green: Some(Color::from_hex(0xa2faa8)),
cyan: Some(Color::from_hex(0xa2faf0)),
blue: Some(Color::from_hex(0x258fc4)),
purple: Some(Color::from_hex(0xc368f7)),
magenta: Some(Color::from_hex(0xb85600)),
};