use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("up"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1b1b1b),
fg: Color::from_hex(0xe2e2e5),
cursor: Some(Color::from_hex(0xdeff8e)),
selection: Some(Color::from_hex(0x3c414c)),
line_highlight: Some(Color::from_hex(0x202020)),
gutter: Some(Color::from_hex(0x707070)),
statusbar_bg: Some(Color::from_hex(0xfe9e21)),
statusbar_fg: Some(Color::from_hex(0x0e0e0e)),
comment: Some(Color::from_hex(0x605a4e)),
keyword: Some(Color::from_hex(0xff9800)),
string: Some(Color::from_hex(0x8cd9a2)),
function: Some(Color::from_hex(0xb7ef52)),
variable: Some(Color::from_hex(0xb1d631)),
r#type: Some(Color::from_hex(0x81c7ff)),
constant: Some(Color::from_hex(0x14f2e7)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff9800)),
green: Some(Color::from_hex(0x8cd9a2)),
cyan: Some(Color::from_hex(0x81c7ff)),
blue: Some(Color::from_hex(0xb7ef52)),
purple: Some(Color::from_hex(0xff9800)),
magenta: Some(Color::from_hex(0xfaf4c6)),
};