use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkBlue"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x112233),
fg: Color::from_hex(0xeeeeee),
cursor: Some(Color::from_hex(0x335577)),
selection: Some(Color::from_hex(0x223344)),
line_highlight: Some(Color::from_hex(0x223344)),
gutter: Some(Color::from_hex(0x446699)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x00c4ff)),
comment: Some(Color::from_hex(0x6666ff)),
keyword: Some(Color::from_hex(0x00a0e0)),
string: Some(Color::from_hex(0x99cc33)),
function: Some(Color::from_hex(0x00a0e0)),
variable: Some(Color::from_hex(0x00a0e0)),
r#type: Some(Color::from_hex(0xff9933)),
constant: Some(Color::from_hex(0x99cc33)),
operator: Some(Color::from_hex(0x00a0e0)),
tag: Some(Color::from_hex(0xff00ff)),
error: Some(Color::from_hex(0xffff00)),
warning: Some(Color::from_hex(0xffa500)),
info: None,
success: None,
red: Some(Color::from_hex(0xffff00)),
orange: None,
yellow: Some(Color::from_hex(0xffa500)),
green: Some(Color::from_hex(0x99cc33)),
cyan: Some(Color::from_hex(0xff9933)),
blue: Some(Color::from_hex(0x00a0e0)),
purple: Some(Color::from_hex(0x00a0e0)),
magenta: Some(Color::from_hex(0xff99ff)),
};