use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("softlight"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x303030),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x1679f9)),
line_highlight: None,
gutter: Some(Color::from_hex(0x00a0ff)),
statusbar_bg: Some(Color::from_hex(0x0e8ed3)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0x888786)),
keyword: Some(Color::from_hex(0x141312)),
string: None,
function: None,
variable: Some(Color::from_hex(0x1f89e0)),
r#type: Some(Color::from_hex(0x0057ae)),
constant: Some(Color::from_hex(0x303030)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0x008000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0x008000)),
green: Some(Color::from_hex(0x008000)),
cyan: Some(Color::from_hex(0x0057ae)),
blue: None,
purple: Some(Color::from_hex(0x141312)),
magenta: Some(Color::from_hex(0x006e26)),
};