use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sf"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xf0f0dd),
fg: Color::from_hex(0x000066),
cursor: Some(Color::from_hex(0xcc0000)),
selection: Some(Color::from_hex(0x00009c)),
line_highlight: None,
gutter: Some(Color::from_hex(0xb0b0b0)),
statusbar_bg: Some(Color::from_hex(0xcc0000)),
statusbar_fg: Some(Color::from_hex(0xf0f0dd)),
comment: Some(Color::from_hex(0xb0b0b0)),
keyword: Some(Color::from_hex(0x0000ee)),
string: Some(Color::from_hex(0x007f00)),
function: Some(Color::from_hex(0xcc0000)),
variable: Some(Color::from_hex(0xcc0000)),
r#type: Some(Color::from_hex(0x551a8b)),
constant: Some(Color::from_hex(0x007f00)),
operator: Some(Color::from_hex(0x0000ee)),
tag: Some(Color::from_hex(0x0000ee)),
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(0x007f00)),
cyan: Some(Color::from_hex(0x551a8b)),
blue: Some(Color::from_hex(0xcc0000)),
purple: Some(Color::from_hex(0x0000ee)),
magenta: Some(Color::from_hex(0xcc0000)),
};