use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Material Lighter"),
author: Cow::Borrowed("Nate Peterson"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xfafafa),
fg: Color::from_hex(0x80cbc4),
cursor: Some(Color::from_hex(0x80cbc4)),
selection: Some(Color::from_hex(0xcceae7)),
line_highlight: Some(Color::from_hex(0xe7eaec)),
gutter: Some(Color::from_hex(0xccd7da)),
statusbar_bg: Some(Color::from_hex(0xe7eaec)),
statusbar_fg: Some(Color::from_hex(0x8796b0)),
comment: Some(Color::from_hex(0xccd7da)),
keyword: Some(Color::from_hex(0x7c4dff)),
string: Some(Color::from_hex(0x91b859)),
function: Some(Color::from_hex(0x6182b8)),
variable: Some(Color::from_hex(0xff5370)),
r#type: Some(Color::from_hex(0xffb62c)),
constant: Some(Color::from_hex(0xf76d47)),
operator: Some(Color::from_hex(0x80cbc4)),
tag: Some(Color::from_hex(0xff5370)),
error: Some(Color::from_hex(0xff5370)),
warning: Some(Color::from_hex(0xffb62c)),
info: Some(Color::from_hex(0x6182b8)),
success: Some(Color::from_hex(0x91b859)),
red: Some(Color::from_hex(0xff5370)),
orange: Some(Color::from_hex(0xf76d47)),
yellow: Some(Color::from_hex(0xffb62c)),
green: Some(Color::from_hex(0x91b859)),
cyan: Some(Color::from_hex(0x39adb5)),
blue: Some(Color::from_hex(0x6182b8)),
purple: Some(Color::from_hex(0x7c4dff)),
magenta: Some(Color::from_hex(0xe53935)),
};