use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("shadesofamber"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xffee00),
cursor: Some(Color::from_hex(0xffee00)),
selection: Some(Color::from_hex(0xffff00)),
line_highlight: None,
gutter: Some(Color::from_hex(0xcc9900)),
statusbar_bg: Some(Color::from_hex(0xffcc00)),
statusbar_fg: Some(Color::from_hex(0x000088)),
comment: Some(Color::from_hex(0xffaa00)),
keyword: Some(Color::from_hex(0xff8800)),
string: Some(Color::from_hex(0xccff00)),
function: Some(Color::from_hex(0xffff88)),
variable: Some(Color::from_hex(0xddcc00)),
r#type: Some(Color::from_hex(0xff8800)),
constant: None,
operator: Some(Color::from_hex(0xff8800)),
tag: None,
error: Some(Color::from_hex(0xffff00)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffff00)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xccff00)),
cyan: Some(Color::from_hex(0xff8800)),
blue: Some(Color::from_hex(0xffff88)),
purple: Some(Color::from_hex(0xff8800)),
magenta: Some(Color::from_hex(0xffff88)),
};