use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Iodine"),
author: Cow::Borrowed(""),
variant: Variant::Light,
contrast: Contrast::High,
bg: Color::from_hex(0xffffff),
fg: Color::from_hex(0x333333),
cursor: Some(Color::from_hex(0x3e4155)),
selection: Some(Color::from_hex(0xc5cdff)),
line_highlight: None,
gutter: Some(Color::from_hex(0xffffff)),
statusbar_bg: Some(Color::from_hex(0x2b2d3b)),
statusbar_fg: Some(Color::from_hex(0xc8d0ff)),
comment: Some(Color::from_hex(0xa9a9a9)),
keyword: Some(Color::from_hex(0x000000)),
string: Some(Color::from_hex(0xff4500)),
function: Some(Color::from_hex(0x000000)),
variable: Some(Color::from_hex(0x007781)),
r#type: Some(Color::from_hex(0x9400d3)),
constant: Some(Color::from_hex(0x2f4f4f)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xff4500)),
cyan: Some(Color::from_hex(0x2f4f4f)),
blue: Some(Color::from_hex(0x000000)),
purple: Some(Color::from_hex(0x000000)),
magenta: Some(Color::from_hex(0x007781)),
};