use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("greygull"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x6d767d),
cursor: Some(Color::from_hex(0x808487)),
selection: Some(Color::from_hex(0xffffff)),
line_highlight: Some(Color::from_hex(0xe6eaed)),
gutter: Some(Color::from_hex(0x808487)),
statusbar_bg: Some(Color::from_hex(0xffffff)),
statusbar_fg: Some(Color::from_hex(0x808487)),
comment: Some(Color::from_hex(0x808487)),
keyword: Some(Color::from_hex(0x4aa840)),
string: Some(Color::from_hex(0x3fa2a6)),
function: Some(Color::from_hex(0x4e9bcf)),
variable: Some(Color::from_hex(0x4e9bcf)),
r#type: Some(Color::from_hex(0xad9142)),
constant: Some(Color::from_hex(0x3fa2a6)),
operator: Some(Color::from_hex(0x4aa840)),
tag: Some(Color::from_hex(0xdb7681)),
error: Some(Color::from_hex(0xdb7681)),
warning: Some(Color::from_hex(0xdb7681)),
info: None,
success: None,
red: Some(Color::from_hex(0xdb7681)),
orange: None,
yellow: Some(Color::from_hex(0xdb7681)),
green: Some(Color::from_hex(0x3fa2a6)),
cyan: Some(Color::from_hex(0xad9142)),
blue: Some(Color::from_hex(0x4e9bcf)),
purple: Some(Color::from_hex(0x4aa840)),
magenta: Some(Color::from_hex(0xd1814f)),
};