use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Estuary Light"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf4f3ec),
fg: Color::from_hex(0x5f5e4e),
cursor: Some(Color::from_hex(0x5f5e4e)),
selection: Some(Color::from_hex(0x929181)),
line_highlight: Some(Color::from_hex(0xe7e6df)),
gutter: Some(Color::from_hex(0x878573)),
statusbar_bg: Some(Color::from_hex(0xe7e6df)),
statusbar_fg: Some(Color::from_hex(0x6c6b5a)),
comment: Some(Color::from_hex(0x878573)),
keyword: Some(Color::from_hex(0x5f9182)),
string: Some(Color::from_hex(0x7d9726)),
function: Some(Color::from_hex(0x36a166)),
variable: Some(Color::from_hex(0xba6236)),
r#type: Some(Color::from_hex(0xa5980d)),
constant: Some(Color::from_hex(0xae7313)),
operator: Some(Color::from_hex(0x5f5e4e)),
tag: Some(Color::from_hex(0xba6236)),
error: Some(Color::from_hex(0xba6236)),
warning: Some(Color::from_hex(0xa5980d)),
info: Some(Color::from_hex(0x36a166)),
success: Some(Color::from_hex(0x7d9726)),
red: Some(Color::from_hex(0xba6236)),
orange: Some(Color::from_hex(0xae7313)),
yellow: Some(Color::from_hex(0xa5980d)),
green: Some(Color::from_hex(0x7d9726)),
cyan: Some(Color::from_hex(0x5b9d48)),
blue: Some(Color::from_hex(0x36a166)),
purple: Some(Color::from_hex(0x5f9182)),
magenta: Some(Color::from_hex(0x9d6c7c)),
};