use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("flattened_light"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xfdf6e3),
fg: Color::from_hex(0x657b83),
cursor: Some(Color::from_hex(0x657b83)),
selection: Some(Color::from_hex(0xfdf6e3)),
line_highlight: Some(Color::from_hex(0xeee8d5)),
gutter: Some(Color::from_hex(0x93a1a1)),
statusbar_bg: Some(Color::from_hex(0xeee8d5)),
statusbar_fg: Some(Color::from_hex(0x586e75)),
comment: Some(Color::from_hex(0x93a1a1)),
keyword: Some(Color::from_hex(0x719e07)),
string: Some(Color::from_hex(0x2aa198)),
function: Some(Color::from_hex(0x268bd2)),
variable: Some(Color::from_hex(0x268bd2)),
r#type: Some(Color::from_hex(0xb58900)),
constant: Some(Color::from_hex(0x2aa198)),
operator: Some(Color::from_hex(0x719e07)),
tag: Some(Color::from_hex(0xdc322f)),
error: Some(Color::from_hex(0xdc322f)),
warning: Some(Color::from_hex(0xdc322f)),
info: None,
success: None,
red: Some(Color::from_hex(0xdc322f)),
orange: None,
yellow: Some(Color::from_hex(0xdc322f)),
green: Some(Color::from_hex(0x2aa198)),
cyan: Some(Color::from_hex(0xb58900)),
blue: Some(Color::from_hex(0x268bd2)),
purple: Some(Color::from_hex(0x719e07)),
magenta: Some(Color::from_hex(0xcb4b16)),
};