use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("google"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x000000),
cursor: Some(Color::from_hex(0x000000)),
selection: Some(Color::from_hex(0x6694e3)),
line_highlight: Some(Color::from_hex(0xefefef)),
gutter: Some(Color::from_hex(0xaaaaaa)),
statusbar_bg: Some(Color::from_hex(0x6694e3)),
statusbar_fg: Some(Color::from_hex(0xffffff)),
comment: Some(Color::from_hex(0xaaaaaa)),
keyword: Some(Color::from_hex(0x7799bb)),
string: Some(Color::from_hex(0x6694e3)),
function: Some(Color::from_hex(0x7799bb)),
variable: Some(Color::from_hex(0x7799bb)),
r#type: Some(Color::from_hex(0x006633)),
constant: Some(Color::from_hex(0x6694e3)),
operator: Some(Color::from_hex(0x7799bb)),
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xffffff)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xffffff)),
green: Some(Color::from_hex(0x6694e3)),
cyan: Some(Color::from_hex(0x006633)),
blue: Some(Color::from_hex(0x7799bb)),
purple: Some(Color::from_hex(0x7799bb)),
magenta: Some(Color::from_hex(0x46aa64)),
};