use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("codeblocks_dark"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121316),
fg: Color::from_hex(0xd1d1d1),
cursor: Some(Color::from_hex(0xffff99)),
selection: Some(Color::from_hex(0x344863)),
line_highlight: Some(Color::from_hex(0x1b1b1b)),
gutter: Some(Color::from_hex(0x928c75)),
statusbar_bg: Some(Color::from_hex(0xc2bfa5)),
statusbar_fg: Some(Color::from_hex(0x000000)),
comment: Some(Color::from_hex(0x566e67)),
keyword: Some(Color::from_hex(0x47abf0)),
string: Some(Color::from_hex(0x4d63eb)),
function: None,
variable: None,
r#type: Some(Color::from_hex(0x47abf0)),
constant: Some(Color::from_hex(0xf34aff)),
operator: Some(Color::from_hex(0xec2417)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xccae22)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xccae22)),
green: Some(Color::from_hex(0x4d63eb)),
cyan: Some(Color::from_hex(0x47abf0)),
blue: None,
purple: Some(Color::from_hex(0x47abf0)),
magenta: Some(Color::from_hex(0x9fef47)),
};