use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Katy"),
author: Cow::Borrowed("George Essig (https://github.com/gessig)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x292d3e),
fg: Color::from_hex(0x959dcb),
cursor: Some(Color::from_hex(0x959dcb)),
selection: Some(Color::from_hex(0x5c598b)),
line_highlight: Some(Color::from_hex(0x444267)),
gutter: Some(Color::from_hex(0x676e95)),
statusbar_bg: Some(Color::from_hex(0x444267)),
statusbar_fg: Some(Color::from_hex(0x8796b0)),
comment: Some(Color::from_hex(0x676e95)),
keyword: Some(Color::from_hex(0xc792ea)),
string: Some(Color::from_hex(0x78c06e)),
function: Some(Color::from_hex(0x82aaff)),
variable: Some(Color::from_hex(0x6e98e1)),
r#type: Some(Color::from_hex(0xe0a557)),
constant: Some(Color::from_hex(0xf78c6c)),
operator: Some(Color::from_hex(0x959dcb)),
tag: Some(Color::from_hex(0x6e98e1)),
error: Some(Color::from_hex(0x6e98e1)),
warning: Some(Color::from_hex(0xe0a557)),
info: Some(Color::from_hex(0x82aaff)),
success: Some(Color::from_hex(0x78c06e)),
red: Some(Color::from_hex(0x6e98e1)),
orange: Some(Color::from_hex(0xf78c6c)),
yellow: Some(Color::from_hex(0xe0a557)),
green: Some(Color::from_hex(0x78c06e)),
cyan: Some(Color::from_hex(0x83b7e5)),
blue: Some(Color::from_hex(0x82aaff)),
purple: Some(Color::from_hex(0xc792ea)),
magenta: Some(Color::from_hex(0xff5370)),
};