use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("carvedwood"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1f2221),
fg: Color::from_hex(0xdac0cd),
cursor: Some(Color::from_hex(0x205a50)),
selection: Some(Color::from_hex(0x33dfef)),
line_highlight: None,
gutter: Some(Color::from_hex(0xd0c5ca)),
statusbar_bg: Some(Color::from_hex(0xc99f93)),
statusbar_fg: Some(Color::from_hex(0x102015)),
comment: Some(Color::from_hex(0x5a6a6d)),
keyword: Some(Color::from_hex(0xfac5ba)),
string: None,
function: None,
variable: Some(Color::from_hex(0xbd7560)),
r#type: Some(Color::from_hex(0xcd9a8a)),
constant: Some(Color::from_hex(0x9a757d)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: None,
cyan: Some(Color::from_hex(0xcd9a8a)),
blue: None,
purple: Some(Color::from_hex(0xfac5ba)),
magenta: Some(Color::from_hex(0xba857a)),
};