use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Windows 10 Light"),
author: Cow::Borrowed("Fergus Collins (https://github.com/ferguscollins)"),
variant: Variant::Light,
contrast: Contrast::Low,
bg: Color::from_hex(0xf2f2f2),
fg: Color::from_hex(0x767676),
cursor: Some(Color::from_hex(0x767676)),
selection: Some(Color::from_hex(0xd9d9d9)),
line_highlight: Some(Color::from_hex(0xe5e5e5)),
gutter: Some(Color::from_hex(0xcccccc)),
statusbar_bg: Some(Color::from_hex(0xe5e5e5)),
statusbar_fg: Some(Color::from_hex(0xababab)),
comment: Some(Color::from_hex(0xcccccc)),
keyword: Some(Color::from_hex(0x881798)),
string: Some(Color::from_hex(0x13a10e)),
function: Some(Color::from_hex(0x0037da)),
variable: Some(Color::from_hex(0xc50f1f)),
r#type: Some(Color::from_hex(0xc19c00)),
constant: Some(Color::from_hex(0xf9f1a5)),
operator: Some(Color::from_hex(0x767676)),
tag: Some(Color::from_hex(0xc50f1f)),
error: Some(Color::from_hex(0xc50f1f)),
warning: Some(Color::from_hex(0xc19c00)),
info: Some(Color::from_hex(0x0037da)),
success: Some(Color::from_hex(0x13a10e)),
red: Some(Color::from_hex(0xc50f1f)),
orange: Some(Color::from_hex(0xf9f1a5)),
yellow: Some(Color::from_hex(0xc19c00)),
green: Some(Color::from_hex(0x13a10e)),
cyan: Some(Color::from_hex(0x3a96dd)),
blue: Some(Color::from_hex(0x0037da)),
purple: Some(Color::from_hex(0x881798)),
magenta: Some(Color::from_hex(0x16c60c)),
};