use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Clarity"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xffff00)),
selection: Some(Color::from_hex(0x0000ff)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x483d8b)),
statusbar_fg: Some(Color::from_hex(0xffff00)),
comment: Some(Color::from_hex(0xff4500)),
keyword: Some(Color::from_hex(0x00ffff)),
string: Some(Color::from_hex(0xffa07a)),
function: Some(Color::from_hex(0x87cefa)),
variable: None,
r#type: Some(Color::from_hex(0x98fb98)),
constant: Some(Color::from_hex(0x7fffd4)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xffa07a)),
cyan: Some(Color::from_hex(0x7fffd4)),
blue: Some(Color::from_hex(0x87cefa)),
purple: Some(Color::from_hex(0x00ffff)),
magenta: None,
};