use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fu"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xffaf00)),
selection: Some(Color::from_hex(0xafd7ff)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0xa8a8a8)),
statusbar_bg: Some(Color::from_hex(0xeeeeee)),
statusbar_fg: Some(Color::from_hex(0x080808)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0xd7ff00)),
string: Some(Color::from_hex(0x87af5f)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0xafd75f)),
r#type: Some(Color::from_hex(0x87afff)),
constant: Some(Color::from_hex(0xffd700)),
operator: Some(Color::from_hex(0x767676)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xffd700)),
green: Some(Color::from_hex(0x87af5f)),
cyan: Some(Color::from_hex(0x87afff)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xd7ff00)),
magenta: Some(Color::from_hex(0xffffaf)),
};