use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("devbox-dark-256"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xdadada),
cursor: None,
selection: Some(Color::from_hex(0x4e4e4e)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x8a8a8a)),
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0x87afff)),
comment: Some(Color::from_hex(0x5f8787)),
keyword: Some(Color::from_hex(0xafd75f)),
string: Some(Color::from_hex(0xff8700)),
function: Some(Color::from_hex(0xffffff)),
variable: Some(Color::from_hex(0xffffff)),
r#type: Some(Color::from_hex(0xafd75f)),
constant: Some(Color::from_hex(0xafd75f)),
operator: Some(Color::from_hex(0xafd75f)),
tag: Some(Color::from_hex(0xafd75f)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0xff8700)),
cyan: Some(Color::from_hex(0xafd75f)),
blue: Some(Color::from_hex(0xffffff)),
purple: Some(Color::from_hex(0xafd75f)),
magenta: Some(Color::from_hex(0xd75fd7)),
};