use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("doriath"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x0e2a1a),
fg: Color::from_hex(0xd2ffc6),
cursor: Some(Color::from_hex(0x54ff9f)),
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xc2dfa5)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x1d96e7)),
keyword: Some(Color::from_hex(0xffff5b)),
string: None,
function: None,
variable: Some(Color::from_hex(0x28dbd2)),
r#type: Some(Color::from_hex(0xff3636)),
constant: Some(Color::from_hex(0x00ff62)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: None,
cyan: Some(Color::from_hex(0xff3636)),
blue: None,
purple: Some(Color::from_hex(0xffff5b)),
magenta: None,
};