use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Solarized Light"),
author: Cow::Borrowed("Ethan Schoonover (modified by aramisgithub)"),
variant: Variant::Light,
contrast: Contrast::Normal,
bg: Color::from_hex(0xfdf6e3),
fg: Color::from_hex(0x586e75),
cursor: Some(Color::from_hex(0x586e75)),
selection: Some(Color::from_hex(0x93a1a1)),
line_highlight: Some(Color::from_hex(0xeee8d5)),
gutter: Some(Color::from_hex(0x839496)),
statusbar_bg: Some(Color::from_hex(0xeee8d5)),
statusbar_fg: Some(Color::from_hex(0x657b83)),
comment: Some(Color::from_hex(0x839496)),
keyword: Some(Color::from_hex(0x6c71c4)),
string: Some(Color::from_hex(0x859900)),
function: Some(Color::from_hex(0x268bd2)),
variable: Some(Color::from_hex(0xdc322f)),
r#type: Some(Color::from_hex(0xb58900)),
constant: Some(Color::from_hex(0xcb4b16)),
operator: Some(Color::from_hex(0x586e75)),
tag: Some(Color::from_hex(0xdc322f)),
error: Some(Color::from_hex(0xdc322f)),
warning: Some(Color::from_hex(0xb58900)),
info: Some(Color::from_hex(0x268bd2)),
success: Some(Color::from_hex(0x859900)),
red: Some(Color::from_hex(0xdc322f)),
orange: Some(Color::from_hex(0xcb4b16)),
yellow: Some(Color::from_hex(0xb58900)),
green: Some(Color::from_hex(0x859900)),
cyan: Some(Color::from_hex(0x2aa198)),
blue: Some(Color::from_hex(0x268bd2)),
purple: Some(Color::from_hex(0x6c71c4)),
magenta: Some(Color::from_hex(0xd33682)),
};