use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("pyte"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xf0f0f0),
fg: Color::from_hex(0x404850),
cursor: Some(Color::from_hex(0xb0b4b8)),
selection: None,
line_highlight: Some(Color::from_hex(0xf6f6f6)),
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: Some(Color::from_hex(0x8090a0)),
statusbar_fg: None,
comment: Some(Color::from_hex(0xa0b0c0)),
keyword: Some(Color::from_hex(0x007020)),
string: Some(Color::from_hex(0x4070a0)),
function: Some(Color::from_hex(0x06287e)),
variable: Some(Color::from_hex(0x5b3674)),
r#type: Some(Color::from_hex(0xe5a00d)),
constant: Some(Color::from_hex(0xa07040)),
operator: Some(Color::from_hex(0x408010)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0x70a0d0)),
green: Some(Color::from_hex(0x4070a0)),
cyan: Some(Color::from_hex(0xe5a00d)),
blue: Some(Color::from_hex(0x06287e)),
purple: Some(Color::from_hex(0x007020)),
magenta: Some(Color::from_hex(0x1060a0)),
};