use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Lakeside"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x161b1d),
fg: Color::from_hex(0x7ea2b4),
cursor: Some(Color::from_hex(0x7ea2b4)),
selection: Some(Color::from_hex(0x516d7b)),
line_highlight: Some(Color::from_hex(0x1f292e)),
gutter: Some(Color::from_hex(0x5a7b8c)),
statusbar_bg: Some(Color::from_hex(0x1f292e)),
statusbar_fg: Some(Color::from_hex(0x7195a8)),
comment: Some(Color::from_hex(0x5a7b8c)),
keyword: Some(Color::from_hex(0x6b6bb8)),
string: Some(Color::from_hex(0x568c3b)),
function: Some(Color::from_hex(0x257fad)),
variable: Some(Color::from_hex(0xd22d72)),
r#type: Some(Color::from_hex(0x8a8a0f)),
constant: Some(Color::from_hex(0x935c25)),
operator: Some(Color::from_hex(0x7ea2b4)),
tag: Some(Color::from_hex(0xd22d72)),
error: Some(Color::from_hex(0xd22d72)),
warning: Some(Color::from_hex(0x8a8a0f)),
info: Some(Color::from_hex(0x257fad)),
success: Some(Color::from_hex(0x568c3b)),
red: Some(Color::from_hex(0xd22d72)),
orange: Some(Color::from_hex(0x935c25)),
yellow: Some(Color::from_hex(0x8a8a0f)),
green: Some(Color::from_hex(0x568c3b)),
cyan: Some(Color::from_hex(0x2d8f6f)),
blue: Some(Color::from_hex(0x257fad)),
purple: Some(Color::from_hex(0x6b6bb8)),
magenta: Some(Color::from_hex(0xb72dd2)),
};