use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("flattr"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x1b1d1e),
fg: Color::from_hex(0xe5e5e5),
cursor: Some(Color::from_hex(0xf8f8f0)),
selection: Some(Color::from_hex(0x403d3d)),
line_highlight: Some(Color::from_hex(0x293739)),
gutter: Some(Color::from_hex(0x465457)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x5c5c5c)),
keyword: Some(Color::from_hex(0x78d3f4)),
string: Some(Color::from_hex(0xfff382)),
function: Some(Color::from_hex(0xffb792)),
variable: Some(Color::from_hex(0xf9a33d)),
r#type: Some(Color::from_hex(0xbeef66)),
constant: Some(Color::from_hex(0xa1dd63)),
operator: Some(Color::from_hex(0xf92672)),
tag: Some(Color::from_hex(0xf7547c)),
error: Some(Color::from_hex(0xf94226)),
warning: Some(Color::from_hex(0xff914c)),
info: None,
success: None,
red: Some(Color::from_hex(0xf94226)),
orange: None,
yellow: Some(Color::from_hex(0xff914c)),
green: Some(Color::from_hex(0xfff382)),
cyan: Some(Color::from_hex(0xbeef66)),
blue: Some(Color::from_hex(0xffb792)),
purple: Some(Color::from_hex(0x78d3f4)),
magenta: Some(Color::from_hex(0x1dffb0)),
};