use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Resolve"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x00457f),
fg: Color::from_hex(0xf5f5f5),
cursor: None,
selection: None,
line_highlight: None,
gutter: None,
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xb0c4de)),
keyword: Some(Color::from_hex(0xf5deb3)),
string: Some(Color::from_hex(0xdda0dd)),
function: None,
variable: Some(Color::from_hex(0xffffe0)),
r#type: Some(Color::from_hex(0x7cfc00)),
constant: None,
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xdda0dd)),
cyan: Some(Color::from_hex(0x7cfc00)),
blue: None,
purple: Some(Color::from_hex(0xf5deb3)),
magenta: Some(Color::from_hex(0xffffe0)),
};