use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Radiance"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x333333),
cursor: Some(Color::from_hex(0xaea79f)),
selection: Some(Color::from_hex(0xf6f5ef)),
line_highlight: Some(Color::from_hex(0xf6f5ef)),
gutter: None,
statusbar_bg: Some(Color::from_hex(0xf6f5ef)),
statusbar_fg: Some(Color::from_hex(0x333333)),
comment: Some(Color::from_hex(0xaea79f)),
keyword: Some(Color::from_hex(0xf47321)),
string: Some(Color::from_hex(0xdd1144)),
function: Some(Color::from_hex(0x860e73)),
variable: Some(Color::from_hex(0x8b005a)),
r#type: Some(Color::from_hex(0x83a525)),
constant: Some(Color::from_hex(0xf68d47)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xdd1144)),
cyan: Some(Color::from_hex(0xf68d47)),
blue: Some(Color::from_hex(0x860e73)),
purple: Some(Color::from_hex(0xf47321)),
magenta: Some(Color::from_hex(0x8b005a)),
};