use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("guepardo"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xfcfcfc),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x0064f3)),
selection: Some(Color::from_hex(0x0064f3)),
line_highlight: Some(Color::from_hex(0xdeefff)),
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x5181ab)),
comment: Some(Color::from_hex(0x5181ab)),
keyword: Some(Color::from_hex(0x0086b5)),
string: Some(Color::from_hex(0x7f7f7f)),
function: Some(Color::from_hex(0x0086b5)),
variable: Some(Color::from_hex(0x1ca330)),
r#type: Some(Color::from_hex(0x0086b5)),
constant: Some(Color::from_hex(0x5181ab)),
operator: Some(Color::from_hex(0x0086b5)),
tag: Some(Color::from_hex(0x4970cc)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x4970cc)),
green: Some(Color::from_hex(0x7f7f7f)),
cyan: Some(Color::from_hex(0x0086b5)),
blue: Some(Color::from_hex(0x0086b5)),
purple: Some(Color::from_hex(0x0086b5)),
magenta: Some(Color::from_hex(0x4900cc)),
};