use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Clues"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffa500)),
selection: Some(Color::from_hex(0x131d26)),
line_highlight: None,
gutter: Some(Color::from_hex(0x434844)),
statusbar_bg: Some(Color::from_hex(0x111111)),
statusbar_fg: Some(Color::from_hex(0x777777)),
comment: Some(Color::from_hex(0x90a0a0)),
keyword: Some(Color::from_hex(0x55c0d2)),
string: Some(Color::from_hex(0x94d4d9)),
function: Some(Color::from_hex(0xbfc3a9)),
variable: Some(Color::from_hex(0xbdba9f)),
r#type: Some(Color::from_hex(0x55aadd)),
constant: Some(Color::from_hex(0xcfc5a9)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x94d4d9)),
cyan: Some(Color::from_hex(0xcfc5a9)),
blue: Some(Color::from_hex(0xbfc3a9)),
purple: Some(Color::from_hex(0x55c0d2)),
magenta: Some(Color::from_hex(0xbdba9f)),
};