use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Default Light"),
author: Cow::Borrowed("Chris Kempson (http://chriskempson.com)"),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf8f8f8),
fg: Color::from_hex(0x383838),
cursor: Some(Color::from_hex(0x383838)),
selection: Some(Color::from_hex(0xd8d8d8)),
line_highlight: Some(Color::from_hex(0xe8e8e8)),
gutter: Some(Color::from_hex(0xb8b8b8)),
statusbar_bg: Some(Color::from_hex(0xe8e8e8)),
statusbar_fg: Some(Color::from_hex(0x585858)),
comment: Some(Color::from_hex(0xb8b8b8)),
keyword: Some(Color::from_hex(0xba8baf)),
string: Some(Color::from_hex(0xa1b56c)),
function: Some(Color::from_hex(0x7cafc2)),
variable: Some(Color::from_hex(0xab4642)),
r#type: Some(Color::from_hex(0xf7ca88)),
constant: Some(Color::from_hex(0xdc9656)),
operator: Some(Color::from_hex(0x383838)),
tag: Some(Color::from_hex(0xab4642)),
error: Some(Color::from_hex(0xab4642)),
warning: Some(Color::from_hex(0xf7ca88)),
info: Some(Color::from_hex(0x7cafc2)),
success: Some(Color::from_hex(0xa1b56c)),
red: Some(Color::from_hex(0xab4642)),
orange: Some(Color::from_hex(0xdc9656)),
yellow: Some(Color::from_hex(0xf7ca88)),
green: Some(Color::from_hex(0xa1b56c)),
cyan: Some(Color::from_hex(0x86c1b9)),
blue: Some(Color::from_hex(0x7cafc2)),
purple: Some(Color::from_hex(0xba8baf)),
magenta: Some(Color::from_hex(0xa16946)),
};