use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Synth Midnight Terminal Light"),
author: Cow::Borrowed("Michaël Ball (http://github.com/michael-ball/)"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xdddfe0),
fg: Color::from_hex(0x28292a),
cursor: Some(Color::from_hex(0x28292a)),
selection: Some(Color::from_hex(0xc1c3c4)),
line_highlight: Some(Color::from_hex(0xcfd1d2)),
gutter: Some(Color::from_hex(0xa3a5a6)),
statusbar_bg: Some(Color::from_hex(0xcfd1d2)),
statusbar_fg: Some(Color::from_hex(0x474849)),
comment: Some(Color::from_hex(0xa3a5a6)),
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(0x28292a)),
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)),
};