use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Horizon Terminal Dark"),
author: Cow::Borrowed("Michaël Ball (http://github.com/michael-ball/)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1e26),
fg: Color::from_hex(0xcbced0),
cursor: Some(Color::from_hex(0xcbced0)),
selection: Some(Color::from_hex(0x2e303e)),
line_highlight: Some(Color::from_hex(0x232530)),
gutter: Some(Color::from_hex(0x6f6f70)),
statusbar_bg: Some(Color::from_hex(0x232530)),
statusbar_fg: Some(Color::from_hex(0x9da0a2)),
comment: Some(Color::from_hex(0x6f6f70)),
keyword: Some(Color::from_hex(0xee64ac)),
string: Some(Color::from_hex(0x29d398)),
function: Some(Color::from_hex(0x26bbd9)),
variable: Some(Color::from_hex(0xe95678)),
r#type: Some(Color::from_hex(0xfac29a)),
constant: Some(Color::from_hex(0xfab795)),
operator: Some(Color::from_hex(0xcbced0)),
tag: Some(Color::from_hex(0xe95678)),
error: Some(Color::from_hex(0xe95678)),
warning: Some(Color::from_hex(0xfac29a)),
info: Some(Color::from_hex(0x26bbd9)),
success: Some(Color::from_hex(0x29d398)),
red: Some(Color::from_hex(0xe95678)),
orange: Some(Color::from_hex(0xfab795)),
yellow: Some(Color::from_hex(0xfac29a)),
green: Some(Color::from_hex(0x29d398)),
cyan: Some(Color::from_hex(0x59e1e3)),
blue: Some(Color::from_hex(0x26bbd9)),
purple: Some(Color::from_hex(0xee64ac)),
magenta: Some(Color::from_hex(0xf09383)),
};