use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("standardized-light"),
author: Cow::Borrowed("ali (https://github.com/ali-githb/base16-standardized-scheme)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x444444),
cursor: Some(Color::from_hex(0x444444)),
selection: Some(Color::from_hex(0xcccccc)),
line_highlight: Some(Color::from_hex(0xeeeeee)),
gutter: Some(Color::from_hex(0x767676)),
statusbar_bg: Some(Color::from_hex(0xeeeeee)),
statusbar_fg: Some(Color::from_hex(0x767676)),
comment: Some(Color::from_hex(0x767676)),
keyword: Some(Color::from_hex(0x9e57c2)),
string: Some(Color::from_hex(0x31861f)),
function: Some(Color::from_hex(0x3173c5)),
variable: Some(Color::from_hex(0xd03e3e)),
r#type: Some(Color::from_hex(0xad8200)),
constant: Some(Color::from_hex(0xd7691d)),
operator: Some(Color::from_hex(0x444444)),
tag: Some(Color::from_hex(0xd03e3e)),
error: Some(Color::from_hex(0xd03e3e)),
warning: Some(Color::from_hex(0xad8200)),
info: Some(Color::from_hex(0x3173c5)),
success: Some(Color::from_hex(0x31861f)),
red: Some(Color::from_hex(0xd03e3e)),
orange: Some(Color::from_hex(0xd7691d)),
yellow: Some(Color::from_hex(0xad8200)),
green: Some(Color::from_hex(0x31861f)),
cyan: Some(Color::from_hex(0x00998f)),
blue: Some(Color::from_hex(0x3173c5)),
purple: Some(Color::from_hex(0x9e57c2)),
magenta: Some(Color::from_hex(0x895025)),
};