use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Material"),
author: Cow::Borrowed("Nate Peterson"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x263238),
fg: Color::from_hex(0xeeffff),
cursor: Some(Color::from_hex(0xeeffff)),
selection: Some(Color::from_hex(0x314549)),
line_highlight: Some(Color::from_hex(0x2e3c43)),
gutter: Some(Color::from_hex(0x546e7a)),
statusbar_bg: Some(Color::from_hex(0x2e3c43)),
statusbar_fg: Some(Color::from_hex(0xb2ccd6)),
comment: Some(Color::from_hex(0x546e7a)),
keyword: Some(Color::from_hex(0xc792ea)),
string: Some(Color::from_hex(0xc3e88d)),
function: Some(Color::from_hex(0x82aaff)),
variable: Some(Color::from_hex(0xf07178)),
r#type: Some(Color::from_hex(0xffcb6b)),
constant: Some(Color::from_hex(0xf78c6c)),
operator: Some(Color::from_hex(0xeeffff)),
tag: Some(Color::from_hex(0xf07178)),
error: Some(Color::from_hex(0xf07178)),
warning: Some(Color::from_hex(0xffcb6b)),
info: Some(Color::from_hex(0x82aaff)),
success: Some(Color::from_hex(0xc3e88d)),
red: Some(Color::from_hex(0xf07178)),
orange: Some(Color::from_hex(0xf78c6c)),
yellow: Some(Color::from_hex(0xffcb6b)),
green: Some(Color::from_hex(0xc3e88d)),
cyan: Some(Color::from_hex(0x89ddff)),
blue: Some(Color::from_hex(0x82aaff)),
purple: Some(Color::from_hex(0xc792ea)),
magenta: Some(Color::from_hex(0xff5370)),
};