use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Materia"),
author: Cow::Borrowed("Defman21"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x263238),
fg: Color::from_hex(0xcdd3de),
cursor: Some(Color::from_hex(0xcdd3de)),
selection: Some(Color::from_hex(0x37474f)),
line_highlight: Some(Color::from_hex(0x2c393f)),
gutter: Some(Color::from_hex(0x707880)),
statusbar_bg: Some(Color::from_hex(0x2c393f)),
statusbar_fg: Some(Color::from_hex(0xc9ccd3)),
comment: Some(Color::from_hex(0x707880)),
keyword: Some(Color::from_hex(0x82aaff)),
string: Some(Color::from_hex(0x8bd649)),
function: Some(Color::from_hex(0x89ddff)),
variable: Some(Color::from_hex(0xec5f67)),
r#type: Some(Color::from_hex(0xffcc00)),
constant: Some(Color::from_hex(0xea9560)),
operator: Some(Color::from_hex(0xcdd3de)),
tag: Some(Color::from_hex(0xec5f67)),
error: Some(Color::from_hex(0xec5f67)),
warning: Some(Color::from_hex(0xffcc00)),
info: Some(Color::from_hex(0x89ddff)),
success: Some(Color::from_hex(0x8bd649)),
red: Some(Color::from_hex(0xec5f67)),
orange: Some(Color::from_hex(0xea9560)),
yellow: Some(Color::from_hex(0xffcc00)),
green: Some(Color::from_hex(0x8bd649)),
cyan: Some(Color::from_hex(0x80cbc4)),
blue: Some(Color::from_hex(0x89ddff)),
purple: Some(Color::from_hex(0x82aaff)),
magenta: Some(Color::from_hex(0xec5f67)),
};