use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("darkmoss"),
author: Cow::Borrowed("Gabriel Avanzi (https://github.com/avanzzzi)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x171e1f),
fg: Color::from_hex(0xc7c7a5),
cursor: Some(Color::from_hex(0xc7c7a5)),
selection: Some(Color::from_hex(0x373c3d)),
line_highlight: Some(Color::from_hex(0x252c2d)),
gutter: Some(Color::from_hex(0x555e5f)),
statusbar_bg: Some(Color::from_hex(0x252c2d)),
statusbar_fg: Some(Color::from_hex(0x818f80)),
comment: Some(Color::from_hex(0x555e5f)),
keyword: Some(Color::from_hex(0x9bc0c8)),
string: Some(Color::from_hex(0x499180)),
function: Some(Color::from_hex(0x498091)),
variable: Some(Color::from_hex(0xff4658)),
r#type: Some(Color::from_hex(0xfdb11f)),
constant: Some(Color::from_hex(0xe6db74)),
operator: Some(Color::from_hex(0xc7c7a5)),
tag: Some(Color::from_hex(0xff4658)),
error: Some(Color::from_hex(0xff4658)),
warning: Some(Color::from_hex(0xfdb11f)),
info: Some(Color::from_hex(0x498091)),
success: Some(Color::from_hex(0x499180)),
red: Some(Color::from_hex(0xff4658)),
orange: Some(Color::from_hex(0xe6db74)),
yellow: Some(Color::from_hex(0xfdb11f)),
green: Some(Color::from_hex(0x499180)),
cyan: Some(Color::from_hex(0x66d9ef)),
blue: Some(Color::from_hex(0x498091)),
purple: Some(Color::from_hex(0x9bc0c8)),
magenta: Some(Color::from_hex(0xd27b53)),
};