use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Charcoal Dark"),
author: Cow::Borrowed("Mubin Muhammad (https://github.com/mubin6th)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x0f0b05),
fg: Color::from_hex(0xc3a983),
cursor: Some(Color::from_hex(0xc3a983)),
selection: Some(Color::from_hex(0x2a2012)),
line_highlight: Some(Color::from_hex(0x231b0e)),
gutter: Some(Color::from_hex(0x57462c)),
statusbar_bg: Some(Color::from_hex(0x231b0e)),
statusbar_fg: Some(Color::from_hex(0xa88c62)),
comment: Some(Color::from_hex(0x57462c)),
keyword: Some(Color::from_hex(0xa88c62)),
string: Some(Color::from_hex(0xdec8a7)),
function: Some(Color::from_hex(0xc3a983)),
variable: Some(Color::from_hex(0xa88c62)),
r#type: Some(Color::from_hex(0xdec8a7)),
constant: Some(Color::from_hex(0xdec8a7)),
operator: Some(Color::from_hex(0xc3a983)),
tag: Some(Color::from_hex(0xa88c62)),
error: Some(Color::from_hex(0xa88c62)),
warning: Some(Color::from_hex(0xdec8a7)),
info: Some(Color::from_hex(0xc3a983)),
success: Some(Color::from_hex(0xdec8a7)),
red: Some(Color::from_hex(0xa88c62)),
orange: Some(Color::from_hex(0xdec8a7)),
yellow: Some(Color::from_hex(0xdec8a7)),
green: Some(Color::from_hex(0xdec8a7)),
cyan: Some(Color::from_hex(0xdec8a7)),
blue: Some(Color::from_hex(0xc3a983)),
purple: Some(Color::from_hex(0xa88c62)),
magenta: Some(Color::from_hex(0x876e48)),
};