use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("distill"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xe2e4e9),
cursor: None,
selection: Some(Color::from_hex(0x274c77)),
line_highlight: Some(Color::from_hex(0x16181d)),
gutter: Some(Color::from_hex(0x373b48)),
statusbar_bg: Some(Color::from_hex(0x373b48)),
statusbar_fg: Some(Color::from_hex(0xbcbccd)),
comment: Some(Color::from_hex(0x555b6e)),
keyword: Some(Color::from_hex(0xad6a6c)),
string: Some(Color::from_hex(0xa69888)),
function: Some(Color::from_hex(0x8baa81)),
variable: Some(Color::from_hex(0x618ca8)),
r#type: Some(Color::from_hex(0x8c92a6)),
constant: Some(Color::from_hex(0x539987)),
operator: Some(Color::from_hex(0xba8730)),
tag: None,
error: Some(Color::from_hex(0xe85555)),
warning: Some(Color::from_hex(0xf28123)),
info: None,
success: None,
red: Some(Color::from_hex(0xe85555)),
orange: None,
yellow: Some(Color::from_hex(0xf28123)),
green: Some(Color::from_hex(0xa69888)),
cyan: Some(Color::from_hex(0x8c92a6)),
blue: Some(Color::from_hex(0x8baa81)),
purple: Some(Color::from_hex(0xad6a6c)),
magenta: Some(Color::from_hex(0x9e5a8f)),
};