use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("playroom"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x7f8c8d),
cursor: Some(Color::from_hex(0x7f8c8d)),
selection: Some(Color::from_hex(0x333333)),
line_highlight: Some(Color::from_hex(0x7f8c8d)),
gutter: Some(Color::from_hex(0x7f8c8d)),
statusbar_bg: Some(Color::from_hex(0xecf0f1)),
statusbar_fg: Some(Color::from_hex(0x7f8c8d)),
comment: Some(Color::from_hex(0xbdc3c7)),
keyword: Some(Color::from_hex(0x2ecc70)),
string: Some(Color::from_hex(0x8d44ad)),
function: Some(Color::from_hex(0xf1c40f)),
variable: Some(Color::from_hex(0xe74d3c)),
r#type: Some(Color::from_hex(0xe67e22)),
constant: Some(Color::from_hex(0x3498db)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x2c3e50)),
green: Some(Color::from_hex(0x8d44ad)),
cyan: Some(Color::from_hex(0xe67e22)),
blue: Some(Color::from_hex(0xf1c40f)),
purple: Some(Color::from_hex(0x2ecc70)),
magenta: Some(Color::from_hex(0x9b9b9b)),
};