use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Cave"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x19171c),
fg: Color::from_hex(0x8b8792),
cursor: Some(Color::from_hex(0x8b8792)),
selection: Some(Color::from_hex(0x585260)),
line_highlight: Some(Color::from_hex(0x26232a)),
gutter: Some(Color::from_hex(0x655f6d)),
statusbar_bg: Some(Color::from_hex(0x26232a)),
statusbar_fg: Some(Color::from_hex(0x7e7887)),
comment: Some(Color::from_hex(0x655f6d)),
keyword: Some(Color::from_hex(0x955ae7)),
string: Some(Color::from_hex(0x2a9292)),
function: Some(Color::from_hex(0x576ddb)),
variable: Some(Color::from_hex(0xbe4678)),
r#type: Some(Color::from_hex(0xa06e3b)),
constant: Some(Color::from_hex(0xaa573c)),
operator: Some(Color::from_hex(0x8b8792)),
tag: Some(Color::from_hex(0xbe4678)),
error: Some(Color::from_hex(0xbe4678)),
warning: Some(Color::from_hex(0xa06e3b)),
info: Some(Color::from_hex(0x576ddb)),
success: Some(Color::from_hex(0x2a9292)),
red: Some(Color::from_hex(0xbe4678)),
orange: Some(Color::from_hex(0xaa573c)),
yellow: Some(Color::from_hex(0xa06e3b)),
green: Some(Color::from_hex(0x2a9292)),
cyan: Some(Color::from_hex(0x398bc6)),
blue: Some(Color::from_hex(0x576ddb)),
purple: Some(Color::from_hex(0x955ae7)),
magenta: Some(Color::from_hex(0xbf40bf)),
};