use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Chasing_Logic"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x303030),
fg: Color::from_hex(0xffffff),
cursor: Some(Color::from_hex(0xc9c9c9)),
selection: Some(Color::from_hex(0x002b36)),
line_highlight: Some(Color::from_hex(0x073642)),
gutter: Some(Color::from_hex(0xd9d9d9)),
statusbar_bg: Some(Color::from_hex(0xc7c7c7)),
statusbar_fg: Some(Color::from_hex(0x2b2b2b)),
comment: Some(Color::from_hex(0x586e75)),
keyword: Some(Color::from_hex(0x719e07)),
string: Some(Color::from_hex(0xff82de)),
function: Some(Color::from_hex(0x268bd2)),
variable: Some(Color::from_hex(0x65a3f0)),
r#type: Some(Color::from_hex(0x14e0ff)),
constant: Some(Color::from_hex(0x14a5ff)),
operator: Some(Color::from_hex(0xff6b77)),
tag: Some(Color::from_hex(0xdc322f)),
error: Some(Color::from_hex(0xff0400)),
warning: Some(Color::from_hex(0xdc322f)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0400)),
orange: None,
yellow: Some(Color::from_hex(0xdc322f)),
green: Some(Color::from_hex(0xff82de)),
cyan: Some(Color::from_hex(0x14e0ff)),
blue: Some(Color::from_hex(0x268bd2)),
purple: Some(Color::from_hex(0x719e07)),
magenta: Some(Color::from_hex(0xff828a)),
};