use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("itsasoa"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0x000080)),
selection: Some(Color::from_hex(0x005faf)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0xe4e4e4)),
statusbar_fg: Some(Color::from_hex(0x585858)),
comment: Some(Color::from_hex(0x808080)),
keyword: Some(Color::from_hex(0x5f005f)),
string: Some(Color::from_hex(0x875fff)),
function: Some(Color::from_hex(0x0000ff)),
variable: Some(Color::from_hex(0x0000ff)),
r#type: Some(Color::from_hex(0x0000ff)),
constant: Some(Color::from_hex(0x00875f)),
operator: Some(Color::from_hex(0x8a8a8a)),
tag: Some(Color::from_hex(0x5faf87)),
error: Some(Color::from_hex(0x800000)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0x800000)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: Some(Color::from_hex(0x875fff)),
cyan: Some(Color::from_hex(0x0000ff)),
blue: Some(Color::from_hex(0x0000ff)),
purple: Some(Color::from_hex(0x5f005f)),
magenta: Some(Color::from_hex(0x0087af)),
};