use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("kalisi"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf5f7f5),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0xff0000)),
selection: Some(Color::from_hex(0xd0eeff)),
line_highlight: Some(Color::from_hex(0x4a4a4c)),
gutter: Some(Color::from_hex(0x707070)),
statusbar_bg: Some(Color::from_hex(0x707070)),
statusbar_fg: Some(Color::from_hex(0xe0e0e0)),
comment: Some(Color::from_hex(0x70a0d0)),
keyword: Some(Color::from_hex(0x66b600)),
string: Some(Color::from_hex(0x0060a0)),
function: Some(Color::from_hex(0x1177dd)),
variable: Some(Color::from_hex(0x202090)),
r#type: Some(Color::from_hex(0xf47300)),
constant: Some(Color::from_hex(0x0000af)),
operator: Some(Color::from_hex(0x274aac)),
tag: Some(Color::from_hex(0x0010ff)),
error: Some(Color::from_hex(0xd80000)),
warning: Some(Color::from_hex(0xd82020)),
info: None,
success: None,
red: Some(Color::from_hex(0xd80000)),
orange: None,
yellow: Some(Color::from_hex(0xd82020)),
green: Some(Color::from_hex(0x0060a0)),
cyan: Some(Color::from_hex(0xf47300)),
blue: Some(Color::from_hex(0x1177dd)),
purple: Some(Color::from_hex(0x66b600)),
magenta: Some(Color::from_hex(0xd80050)),
};