use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Plateau"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1b1818),
fg: Color::from_hex(0x8a8585),
cursor: Some(Color::from_hex(0x8a8585)),
selection: Some(Color::from_hex(0x585050)),
line_highlight: Some(Color::from_hex(0x292424)),
gutter: Some(Color::from_hex(0x655d5d)),
statusbar_bg: Some(Color::from_hex(0x292424)),
statusbar_fg: Some(Color::from_hex(0x7e7777)),
comment: Some(Color::from_hex(0x655d5d)),
keyword: Some(Color::from_hex(0x8464c4)),
string: Some(Color::from_hex(0x4b8b8b)),
function: Some(Color::from_hex(0x7272ca)),
variable: Some(Color::from_hex(0xca4949)),
r#type: Some(Color::from_hex(0xa06e3b)),
constant: Some(Color::from_hex(0xb45a3c)),
operator: Some(Color::from_hex(0x8a8585)),
tag: Some(Color::from_hex(0xca4949)),
error: Some(Color::from_hex(0xca4949)),
warning: Some(Color::from_hex(0xa06e3b)),
info: Some(Color::from_hex(0x7272ca)),
success: Some(Color::from_hex(0x4b8b8b)),
red: Some(Color::from_hex(0xca4949)),
orange: Some(Color::from_hex(0xb45a3c)),
yellow: Some(Color::from_hex(0xa06e3b)),
green: Some(Color::from_hex(0x4b8b8b)),
cyan: Some(Color::from_hex(0x5485b6)),
blue: Some(Color::from_hex(0x7272ca)),
purple: Some(Color::from_hex(0x8464c4)),
magenta: Some(Color::from_hex(0xbd5187)),
};