use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Surveyor"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000040),
fg: Color::from_hex(0xe1eaff),
cursor: Some(Color::from_hex(0xfef047)),
selection: Some(Color::from_hex(0xa7abcd)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x7076af)),
statusbar_fg: None,
comment: Some(Color::from_hex(0xfceb70)),
keyword: Some(Color::from_hex(0xd9f5ff)),
string: None,
function: Some(Color::from_hex(0xbbcfff)),
variable: Some(Color::from_hex(0xfff297)),
r#type: Some(Color::from_hex(0xffd9f4)),
constant: Some(Color::from_hex(0xffd6b0)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xefefaa)),
green: None,
cyan: Some(Color::from_hex(0xffd9f4)),
blue: Some(Color::from_hex(0xbbcfff)),
purple: Some(Color::from_hex(0xd9f5ff)),
magenta: None,
};