use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Synth Midnight Terminal Dark"),
author: Cow::Borrowed("Michaël Ball (http://github.com/michael-ball/)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x050608),
fg: Color::from_hex(0xc1c3c4),
cursor: Some(Color::from_hex(0xc1c3c4)),
selection: Some(Color::from_hex(0x28292a)),
line_highlight: Some(Color::from_hex(0x1a1b1c)),
gutter: Some(Color::from_hex(0x474849)),
statusbar_bg: Some(Color::from_hex(0x1a1b1c)),
statusbar_fg: Some(Color::from_hex(0xa3a5a6)),
comment: Some(Color::from_hex(0x474849)),
keyword: Some(Color::from_hex(0xea5ce2)),
string: Some(Color::from_hex(0x06ea61)),
function: Some(Color::from_hex(0x03aeff)),
variable: Some(Color::from_hex(0xb53b50)),
r#type: Some(Color::from_hex(0xc9d364)),
constant: Some(Color::from_hex(0xea770d)),
operator: Some(Color::from_hex(0xc1c3c4)),
tag: Some(Color::from_hex(0xb53b50)),
error: Some(Color::from_hex(0xb53b50)),
warning: Some(Color::from_hex(0xc9d364)),
info: Some(Color::from_hex(0x03aeff)),
success: Some(Color::from_hex(0x06ea61)),
red: Some(Color::from_hex(0xb53b50)),
orange: Some(Color::from_hex(0xea770d)),
yellow: Some(Color::from_hex(0xc9d364)),
green: Some(Color::from_hex(0x06ea61)),
cyan: Some(Color::from_hex(0x42fff9)),
blue: Some(Color::from_hex(0x03aeff)),
purple: Some(Color::from_hex(0xea5ce2)),
magenta: Some(Color::from_hex(0xcd6320)),
};