use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Nova"),
author: Cow::Borrowed(
"George Essig (https://github.com/gessig), Trevor D. Miller (https://trevordmiller.com)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x3c4c55),
fg: Color::from_hex(0xc5d4dd),
cursor: Some(Color::from_hex(0xc5d4dd)),
selection: Some(Color::from_hex(0x6a7d89)),
line_highlight: Some(Color::from_hex(0x556873)),
gutter: Some(Color::from_hex(0x899ba6)),
statusbar_bg: Some(Color::from_hex(0x556873)),
statusbar_fg: Some(Color::from_hex(0x899ba6)),
comment: Some(Color::from_hex(0x899ba6)),
keyword: Some(Color::from_hex(0x9a93e1)),
string: Some(Color::from_hex(0x7fc1ca)),
function: Some(Color::from_hex(0x83afe5)),
variable: Some(Color::from_hex(0x83afe5)),
r#type: Some(Color::from_hex(0xa8ce93)),
constant: Some(Color::from_hex(0x7fc1ca)),
operator: Some(Color::from_hex(0xc5d4dd)),
tag: Some(Color::from_hex(0x83afe5)),
error: Some(Color::from_hex(0x83afe5)),
warning: Some(Color::from_hex(0xa8ce93)),
info: Some(Color::from_hex(0x83afe5)),
success: Some(Color::from_hex(0x7fc1ca)),
red: Some(Color::from_hex(0x83afe5)),
orange: Some(Color::from_hex(0x7fc1ca)),
yellow: Some(Color::from_hex(0xa8ce93)),
green: Some(Color::from_hex(0x7fc1ca)),
cyan: Some(Color::from_hex(0xf2c38f)),
blue: Some(Color::from_hex(0x83afe5)),
purple: Some(Color::from_hex(0x9a93e1)),
magenta: Some(Color::from_hex(0xf2c38f)),
};