use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("tarot"),
author: Cow::Borrowed("ed (https://codeberg.org/ed)"),
variant: Variant::Dark,
contrast: Contrast::Low,
bg: Color::from_hex(0x0e091d),
fg: Color::from_hex(0xaa556f),
cursor: Some(Color::from_hex(0xaa556f)),
selection: Some(Color::from_hex(0x4b2054)),
line_highlight: Some(Color::from_hex(0x2a153c)),
gutter: Some(Color::from_hex(0x74316b)),
statusbar_bg: Some(Color::from_hex(0x2a153c)),
statusbar_fg: Some(Color::from_hex(0x8c406f)),
comment: Some(Color::from_hex(0x74316b)),
keyword: Some(Color::from_hex(0xa45782)),
string: Some(Color::from_hex(0xa68e5a)),
function: Some(Color::from_hex(0x6e6080)),
variable: Some(Color::from_hex(0xc53253)),
r#type: Some(Color::from_hex(0xff6565)),
constant: Some(Color::from_hex(0xea4d60)),
operator: Some(Color::from_hex(0xaa556f)),
tag: Some(Color::from_hex(0xc53253)),
error: Some(Color::from_hex(0xc53253)),
warning: Some(Color::from_hex(0xff6565)),
info: Some(Color::from_hex(0x6e6080)),
success: Some(Color::from_hex(0xa68e5a)),
red: Some(Color::from_hex(0xc53253)),
orange: Some(Color::from_hex(0xea4d60)),
yellow: Some(Color::from_hex(0xff6565)),
green: Some(Color::from_hex(0xa68e5a)),
cyan: Some(Color::from_hex(0x8c9785)),
blue: Some(Color::from_hex(0x6e6080)),
purple: Some(Color::from_hex(0xa45782)),
magenta: Some(Color::from_hex(0x984d51)),
};