use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Edge Dark"),
author: Cow::Borrowed(
"cjayross (https://github.com/cjayross), Tinted Theming (https://github.com/tinted-theming)",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x262729),
fg: Color::from_hex(0xafb2b5),
cursor: Some(Color::from_hex(0xafb2b5)),
selection: Some(Color::from_hex(0x3d3f42)),
line_highlight: Some(Color::from_hex(0x313235)),
gutter: Some(Color::from_hex(0x4a4c4f)),
statusbar_bg: Some(Color::from_hex(0x313235)),
statusbar_fg: Some(Color::from_hex(0x95989d)),
comment: Some(Color::from_hex(0x4a4c4f)),
keyword: Some(Color::from_hex(0xd390e7)),
string: Some(Color::from_hex(0xa1bf78)),
function: Some(Color::from_hex(0x73b3e7)),
variable: Some(Color::from_hex(0xe77171)),
r#type: Some(Color::from_hex(0xdbb774)),
constant: Some(Color::from_hex(0xeba31a)),
operator: Some(Color::from_hex(0xafb2b5)),
tag: Some(Color::from_hex(0xe77171)),
error: Some(Color::from_hex(0xe77171)),
warning: Some(Color::from_hex(0xdbb774)),
info: Some(Color::from_hex(0x73b3e7)),
success: Some(Color::from_hex(0xa1bf78)),
red: Some(Color::from_hex(0xe77171)),
orange: Some(Color::from_hex(0xeba31a)),
yellow: Some(Color::from_hex(0xdbb774)),
green: Some(Color::from_hex(0xa1bf78)),
cyan: Some(Color::from_hex(0x5ebaa5)),
blue: Some(Color::from_hex(0x73b3e7)),
purple: Some(Color::from_hex(0xd390e7)),
magenta: Some(Color::from_hex(0x5ebaa5)),
};