use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("prmths"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x000011),
fg: Color::from_hex(0x6666cc),
cursor: Some(Color::from_hex(0x999900)),
selection: None,
line_highlight: None,
gutter: Some(Color::from_hex(0x333333)),
statusbar_bg: Some(Color::from_hex(0x444499)),
statusbar_fg: None,
comment: Some(Color::from_hex(0x555555)),
keyword: Some(Color::from_hex(0xffffbb)),
string: Some(Color::from_hex(0xff0000)),
function: Some(Color::from_hex(0x22aadd)),
variable: None,
r#type: Some(Color::from_hex(0x0000ff)),
constant: Some(Color::from_hex(0x880000)),
operator: Some(Color::from_hex(0x99aaff)),
tag: Some(Color::from_hex(0xffff00)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x99ffff)),
green: Some(Color::from_hex(0xff0000)),
cyan: Some(Color::from_hex(0x0000ff)),
blue: Some(Color::from_hex(0x22aadd)),
purple: Some(Color::from_hex(0xffffbb)),
magenta: Some(Color::from_hex(0x33ccff)),
};