use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("nicotine"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffcc),
fg: Color::from_hex(0x000000),
cursor: None,
selection: Some(Color::from_hex(0x00ccff)),
line_highlight: None,
gutter: Some(Color::from_hex(0xffffcc)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xec0904)),
keyword: Some(Color::from_hex(0x6f8b17)),
string: Some(Color::from_hex(0x9d7d4a)),
function: Some(Color::from_hex(0x6f8b17)),
variable: Some(Color::from_hex(0x000000)),
r#type: Some(Color::from_hex(0x669900)),
constant: Some(Color::from_hex(0x9d7d4a)),
operator: Some(Color::from_hex(0x006600)),
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xff8100)),
green: Some(Color::from_hex(0x9d7d4a)),
cyan: Some(Color::from_hex(0x669900)),
blue: Some(Color::from_hex(0x6f8b17)),
purple: Some(Color::from_hex(0x6f8b17)),
magenta: Some(Color::from_hex(0x6f8b17)),
};