use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Terracotta"),
author: Cow::Borrowed("Alexander Rossell Hayes (https://github.com/rossellhayes)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xefeae8),
fg: Color::from_hex(0x473731),
cursor: Some(Color::from_hex(0x473731)),
selection: Some(Color::from_hex(0xd0c1bb)),
line_highlight: Some(Color::from_hex(0xdfd6d1)),
gutter: Some(Color::from_hex(0xc0aca4)),
statusbar_bg: Some(Color::from_hex(0xdfd6d1)),
statusbar_fg: Some(Color::from_hex(0x59453d)),
comment: Some(Color::from_hex(0xc0aca4)),
keyword: Some(Color::from_hex(0x8d5968)),
string: Some(Color::from_hex(0x7a894a)),
function: Some(Color::from_hex(0x625574)),
variable: Some(Color::from_hex(0xa75045)),
r#type: Some(Color::from_hex(0xce943e)),
constant: Some(Color::from_hex(0xbd6942)),
operator: Some(Color::from_hex(0x473731)),
tag: Some(Color::from_hex(0xa75045)),
error: Some(Color::from_hex(0xa75045)),
warning: Some(Color::from_hex(0xce943e)),
info: Some(Color::from_hex(0x625574)),
success: Some(Color::from_hex(0x7a894a)),
red: Some(Color::from_hex(0xa75045)),
orange: Some(Color::from_hex(0xbd6942)),
yellow: Some(Color::from_hex(0xce943e)),
green: Some(Color::from_hex(0x7a894a)),
cyan: Some(Color::from_hex(0x847f9e)),
blue: Some(Color::from_hex(0x625574)),
purple: Some(Color::from_hex(0x8d5968)),
magenta: Some(Color::from_hex(0xb07158)),
};