use crate::{Base16Palette, Base24Palette, Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Mountain"),
author: Cow::Borrowed(
"Stefan Weigl-Bosker (https://github.com/sweiglbosker), based on Mountain Theme (https://github.com/mountain-theme/Mountain)",
),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x0f0f0f),
fg: Color::from_hex(0xcacaca),
cursor: Some(Color::from_hex(0xcacaca)),
selection: Some(Color::from_hex(0x262626)),
line_highlight: Some(Color::from_hex(0x191919)),
gutter: Some(Color::from_hex(0x393939)),
statusbar_bg: Some(Color::from_hex(0x191919)),
statusbar_fg: Some(Color::from_hex(0x4c4c4c)),
comment: Some(Color::from_hex(0x393939)),
keyword: Some(Color::from_hex(0xac8aac)),
string: Some(Color::from_hex(0x8aac8b)),
function: Some(Color::from_hex(0x8f8aac)),
variable: Some(Color::from_hex(0xac8a8c)),
r#type: Some(Color::from_hex(0xaca98a)),
constant: Some(Color::from_hex(0xc6a679)),
operator: Some(Color::from_hex(0xcacaca)),
tag: Some(Color::from_hex(0xac8a8c)),
error: Some(Color::from_hex(0xac8a8c)),
warning: Some(Color::from_hex(0xaca98a)),
info: Some(Color::from_hex(0x8f8aac)),
success: Some(Color::from_hex(0x8aac8b)),
red: Some(Color::from_hex(0xc49ea0)),
orange: Some(Color::from_hex(0xc6a679)),
yellow: Some(Color::from_hex(0xc4c19e)),
green: Some(Color::from_hex(0x9ec49f)),
cyan: Some(Color::from_hex(0x8aabac)),
blue: Some(Color::from_hex(0x9ec3c4)),
purple: Some(Color::from_hex(0xa39ec4)),
magenta: Some(Color::from_hex(0xc49ec4)),
};
pub const PALETTE: Base24Palette = Base24Palette {
base: Base16Palette {
base00: Color::from_hex(0x0f0f0f),
base01: Color::from_hex(0x191919),
base02: Color::from_hex(0x262626),
base03: Color::from_hex(0x393939),
base04: Color::from_hex(0x4c4c4c),
base05: Color::from_hex(0xcacaca),
base06: Color::from_hex(0xe7e7e7),
base07: Color::from_hex(0xf0f0f0),
base08: Color::from_hex(0xac8a8c),
base09: Color::from_hex(0xc6a679),
base0a: Color::from_hex(0xaca98a),
base0b: Color::from_hex(0x8aac8b),
base0c: Color::from_hex(0x8aabac),
base0d: Color::from_hex(0x8f8aac),
base0e: Color::from_hex(0xac8aac),
base0f: Color::from_hex(0xac8a8c),
},
base10: Color::from_hex(0x0d0d0d),
base11: Color::from_hex(0x0a0a0a),
base12: Color::from_hex(0xc49ea0),
base13: Color::from_hex(0xc4c19e),
base14: Color::from_hex(0x9ec49f),
base15: Color::from_hex(0x9ec3c4),
base16: Color::from_hex(0xa39ec4),
base17: Color::from_hex(0xc49ec4),
};