use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Subtle Blue"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x65889c),
fg: Color::from_hex(0xeedfcc),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x5f9ea0)),
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: None,
keyword: Some(Color::from_hex(0xadd8e6)),
string: Some(Color::from_hex(0x66cdaa)),
function: Some(Color::from_hex(0x00ffff)),
variable: Some(Color::from_hex(0xadd8e6)),
r#type: Some(Color::from_hex(0xadd8e6)),
constant: Some(Color::from_hex(0xadd8e6)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0x66cdaa)),
cyan: Some(Color::from_hex(0xadd8e6)),
blue: Some(Color::from_hex(0x00ffff)),
purple: Some(Color::from_hex(0xadd8e6)),
magenta: Some(Color::from_hex(0xadd8e6)),
};