use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("nazca"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x161617),
fg: Color::from_hex(0xf6f3e8),
cursor: Some(Color::from_hex(0xf0f000)),
selection: Some(Color::from_hex(0x262d51)),
line_highlight: Some(Color::from_hex(0x000000)),
gutter: Some(Color::from_hex(0x3d3d3d)),
statusbar_bg: Some(Color::from_hex(0x202020)),
statusbar_fg: Some(Color::from_hex(0x9cffd3)),
comment: Some(Color::from_hex(0x7c7c7c)),
keyword: Some(Color::from_hex(0x96cbfe)),
string: Some(Color::from_hex(0xacff82)),
function: Some(Color::from_hex(0xffd2a7)),
variable: Some(Color::from_hex(0xc6c5fe)),
r#type: Some(Color::from_hex(0xffffb6)),
constant: Some(Color::from_hex(0x99cc99)),
operator: Some(Color::from_hex(0xe8ac6f)),
tag: Some(Color::from_hex(0xe18964)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0xacff82)),
cyan: Some(Color::from_hex(0xffffb6)),
blue: Some(Color::from_hex(0xffd2a7)),
purple: Some(Color::from_hex(0x96cbfe)),
magenta: Some(Color::from_hex(0x96cbfe)),
};