use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Edge Light"),
author: Cow::Borrowed(
"cjayross (https://github.com/cjayross), Tinted Theming (https://github.com/tinted-theming)",
),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfafafa),
fg: Color::from_hex(0x474752),
cursor: Some(Color::from_hex(0x474752)),
selection: Some(Color::from_hex(0xacb1b9)),
line_highlight: Some(Color::from_hex(0xe3e5e8)),
gutter: Some(Color::from_hex(0x9197a1)),
statusbar_bg: Some(Color::from_hex(0xe3e5e8)),
statusbar_fg: Some(Color::from_hex(0x5e646f)),
comment: Some(Color::from_hex(0x9197a1)),
keyword: Some(Color::from_hex(0xb870ce)),
string: Some(Color::from_hex(0x7c9f4b)),
function: Some(Color::from_hex(0x6587bf)),
variable: Some(Color::from_hex(0xdb7070)),
r#type: Some(Color::from_hex(0xebcc1a)),
constant: Some(Color::from_hex(0xeba31a)),
operator: Some(Color::from_hex(0x474752)),
tag: Some(Color::from_hex(0xdb7070)),
error: Some(Color::from_hex(0xdb7070)),
warning: Some(Color::from_hex(0xebcc1a)),
info: Some(Color::from_hex(0x6587bf)),
success: Some(Color::from_hex(0x7c9f4b)),
red: Some(Color::from_hex(0xdb7070)),
orange: Some(Color::from_hex(0xeba31a)),
yellow: Some(Color::from_hex(0xebcc1a)),
green: Some(Color::from_hex(0x7c9f4b)),
cyan: Some(Color::from_hex(0x509c93)),
blue: Some(Color::from_hex(0x6587bf)),
purple: Some(Color::from_hex(0xb870ce)),
magenta: Some(Color::from_hex(0x509c93)),
};