use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Forest"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1b1918),
fg: Color::from_hex(0xa8a19f),
cursor: Some(Color::from_hex(0xa8a19f)),
selection: Some(Color::from_hex(0x68615e)),
line_highlight: Some(Color::from_hex(0x2c2421)),
gutter: Some(Color::from_hex(0x766e6b)),
statusbar_bg: Some(Color::from_hex(0x2c2421)),
statusbar_fg: Some(Color::from_hex(0x9c9491)),
comment: Some(Color::from_hex(0x766e6b)),
keyword: Some(Color::from_hex(0x6666ea)),
string: Some(Color::from_hex(0x7b9726)),
function: Some(Color::from_hex(0x407ee7)),
variable: Some(Color::from_hex(0xf22c40)),
r#type: Some(Color::from_hex(0xc38418)),
constant: Some(Color::from_hex(0xdf5320)),
operator: Some(Color::from_hex(0xa8a19f)),
tag: Some(Color::from_hex(0xf22c40)),
error: Some(Color::from_hex(0xf22c40)),
warning: Some(Color::from_hex(0xc38418)),
info: Some(Color::from_hex(0x407ee7)),
success: Some(Color::from_hex(0x7b9726)),
red: Some(Color::from_hex(0xf22c40)),
orange: Some(Color::from_hex(0xdf5320)),
yellow: Some(Color::from_hex(0xc38418)),
green: Some(Color::from_hex(0x7b9726)),
cyan: Some(Color::from_hex(0x3d97b8)),
blue: Some(Color::from_hex(0x407ee7)),
purple: Some(Color::from_hex(0x6666ea)),
magenta: Some(Color::from_hex(0xc33ff3)),
};