use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Atelier Dune"),
author: Cow::Borrowed("Bram de Haan (http://atelierbramdehaan.nl)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x20201d),
fg: Color::from_hex(0xa6a28c),
cursor: Some(Color::from_hex(0xa6a28c)),
selection: Some(Color::from_hex(0x6e6b5e)),
line_highlight: Some(Color::from_hex(0x292824)),
gutter: Some(Color::from_hex(0x7d7a68)),
statusbar_bg: Some(Color::from_hex(0x292824)),
statusbar_fg: Some(Color::from_hex(0x999580)),
comment: Some(Color::from_hex(0x7d7a68)),
keyword: Some(Color::from_hex(0xb854d4)),
string: Some(Color::from_hex(0x60ac39)),
function: Some(Color::from_hex(0x6684e1)),
variable: Some(Color::from_hex(0xd73737)),
r#type: Some(Color::from_hex(0xae9513)),
constant: Some(Color::from_hex(0xb65611)),
operator: Some(Color::from_hex(0xa6a28c)),
tag: Some(Color::from_hex(0xd73737)),
error: Some(Color::from_hex(0xd73737)),
warning: Some(Color::from_hex(0xae9513)),
info: Some(Color::from_hex(0x6684e1)),
success: Some(Color::from_hex(0x60ac39)),
red: Some(Color::from_hex(0xd73737)),
orange: Some(Color::from_hex(0xb65611)),
yellow: Some(Color::from_hex(0xae9513)),
green: Some(Color::from_hex(0x60ac39)),
cyan: Some(Color::from_hex(0x1fad83)),
blue: Some(Color::from_hex(0x6684e1)),
purple: Some(Color::from_hex(0xb854d4)),
magenta: Some(Color::from_hex(0xd43552)),
};