use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("cgpro"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x262626),
fg: Color::from_hex(0xb5b5b5),
cursor: Some(Color::from_hex(0x8faf9f)),
selection: Some(Color::from_hex(0x90701d)),
line_highlight: None,
gutter: Some(Color::from_hex(0xb5b5b5)),
statusbar_bg: Some(Color::from_hex(0xccdc90)),
statusbar_fg: Some(Color::from_hex(0x313633)),
comment: Some(Color::from_hex(0x30b6b6)),
keyword: Some(Color::from_hex(0xffff7f)),
string: Some(Color::from_hex(0x09b509)),
function: Some(Color::from_hex(0xc94242)),
variable: None,
r#type: Some(Color::from_hex(0xc94242)),
constant: Some(Color::from_hex(0xc94242)),
operator: Some(Color::from_hex(0xffff7f)),
tag: Some(Color::from_hex(0x30b6b6)),
error: Some(Color::from_hex(0x80d4aa)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x80d4aa)),
orange: None,
yellow: Some(Color::from_hex(0x00ff00)),
green: Some(Color::from_hex(0x09b509)),
cyan: Some(Color::from_hex(0xc94242)),
blue: Some(Color::from_hex(0xc94242)),
purple: Some(Color::from_hex(0xffff7f)),
magenta: None,
};