use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Soft Stone"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xefece3),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x242424)),
line_highlight: Some(Color::from_hex(0xcfcabe)),
gutter: None,
statusbar_bg: Some(Color::from_hex(0xdbd2bf)),
statusbar_fg: Some(Color::from_hex(0x343434)),
comment: Some(Color::from_hex(0x373737)),
keyword: Some(Color::from_hex(0x490026)),
string: Some(Color::from_hex(0x0f126e)),
function: Some(Color::from_hex(0x340557)),
variable: Some(Color::from_hex(0x014500)),
r#type: Some(Color::from_hex(0x014500)),
constant: Some(Color::from_hex(0x374014)),
operator: None,
tag: None,
error: None,
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x0f126e)),
cyan: Some(Color::from_hex(0x374014)),
blue: Some(Color::from_hex(0x340557)),
purple: Some(Color::from_hex(0x490026)),
magenta: Some(Color::from_hex(0x014500)),
};