use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Savanna"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x171c19),
fg: Color::from_hex(0x87928a),
cursor: Some(Color::from_hex(0x87928a)),
selection: Some(Color::from_hex(0x526057)),
line_highlight: Some(Color::from_hex(0x232a25)),
gutter: Some(Color::from_hex(0x5f6d64)),
statusbar_bg: Some(Color::from_hex(0x232a25)),
statusbar_fg: Some(Color::from_hex(0x78877d)),
comment: Some(Color::from_hex(0x5f6d64)),
keyword: Some(Color::from_hex(0x55859b)),
string: Some(Color::from_hex(0x489963)),
function: Some(Color::from_hex(0x478c90)),
variable: Some(Color::from_hex(0xb16139)),
r#type: Some(Color::from_hex(0xa07e3b)),
constant: Some(Color::from_hex(0x9f713c)),
operator: Some(Color::from_hex(0x87928a)),
tag: Some(Color::from_hex(0xb16139)),
error: Some(Color::from_hex(0xb16139)),
warning: Some(Color::from_hex(0xa07e3b)),
info: Some(Color::from_hex(0x478c90)),
success: Some(Color::from_hex(0x489963)),
red: Some(Color::from_hex(0xb16139)),
orange: Some(Color::from_hex(0x9f713c)),
yellow: Some(Color::from_hex(0xa07e3b)),
green: Some(Color::from_hex(0x489963)),
cyan: Some(Color::from_hex(0x1c9aa0)),
blue: Some(Color::from_hex(0x478c90)),
purple: Some(Color::from_hex(0x55859b)),
magenta: Some(Color::from_hex(0x867469)),
};