use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("clearance"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x151616),
fg: Color::from_hex(0xe6eef5),
cursor: Some(Color::from_hex(0xb8c2cc)),
selection: Some(Color::from_hex(0xffffb6)),
line_highlight: Some(Color::from_hex(0x222324)),
gutter: Some(Color::from_hex(0x484e52)),
statusbar_bg: Some(Color::from_hex(0x222324)),
statusbar_fg: Some(Color::from_hex(0xb8c2cc)),
comment: Some(Color::from_hex(0x657380)),
keyword: Some(Color::from_hex(0x8fc4fd)),
string: Some(Color::from_hex(0xc1f360)),
function: Some(Color::from_hex(0xffd2a7)),
variable: Some(Color::from_hex(0xd3c4f7)),
r#type: Some(Color::from_hex(0xffffb6)),
constant: Some(Color::from_hex(0xb1f7e0)),
operator: Some(Color::from_hex(0xe6eef5)),
tag: Some(Color::from_hex(0xeb7a4b)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xeb7a4b)),
green: Some(Color::from_hex(0xc1f360)),
cyan: Some(Color::from_hex(0xffffb6)),
blue: Some(Color::from_hex(0xffd2a7)),
purple: Some(Color::from_hex(0x8fc4fd)),
magenta: Some(Color::from_hex(0x8fc4fd)),
};