use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkdevel"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xf0f0f0),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x505064)),
line_highlight: Some(Color::from_hex(0x0f0f0f)),
gutter: Some(Color::from_hex(0x777777)),
statusbar_bg: Some(Color::from_hex(0x777777)),
statusbar_fg: Some(Color::from_hex(0x0f0f0f)),
comment: Some(Color::from_hex(0x646464)),
keyword: Some(Color::from_hex(0xc86432)),
string: Some(Color::from_hex(0x64c896)),
function: Some(Color::from_hex(0xffc864)),
variable: Some(Color::from_hex(0x6496c8)),
r#type: Some(Color::from_hex(0xdc4b32)),
constant: Some(Color::from_hex(0x6496c8)),
operator: Some(Color::from_hex(0x64c864)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: None,
green: Some(Color::from_hex(0x64c896)),
cyan: Some(Color::from_hex(0xdc4b32)),
blue: Some(Color::from_hex(0xffc864)),
purple: Some(Color::from_hex(0xc86432)),
magenta: Some(Color::from_hex(0xdcdcdc)),
};