use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("fokus"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf5f3e7),
fg: Color::from_hex(0x404040),
cursor: Some(Color::from_hex(0x404040)),
selection: Some(Color::from_hex(0xffddf5)),
line_highlight: Some(Color::from_hex(0xebe8dc)),
gutter: Some(Color::from_hex(0xacacac)),
statusbar_bg: Some(Color::from_hex(0x404040)),
statusbar_fg: Some(Color::from_hex(0xf8f8f8)),
comment: Some(Color::from_hex(0xd998c2)),
keyword: None,
string: Some(Color::from_hex(0x889d52)),
function: Some(Color::from_hex(0xdd2222)),
variable: Some(Color::from_hex(0x0070e6)),
r#type: Some(Color::from_hex(0x8955a3)),
constant: Some(Color::from_hex(0xff4080)),
operator: Some(Color::from_hex(0xcc7a7a)),
tag: None,
error: Some(Color::from_hex(0xff0000)),
warning: Some(Color::from_hex(0xff0000)),
info: None,
success: None,
red: Some(Color::from_hex(0xff0000)),
orange: None,
yellow: Some(Color::from_hex(0xff0000)),
green: Some(Color::from_hex(0x889d52)),
cyan: Some(Color::from_hex(0x8955a3)),
blue: Some(Color::from_hex(0xdd2222)),
purple: None,
magenta: Some(Color::from_hex(0x7aa1cc)),
};