use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("iceberg"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x161821),
fg: Color::from_hex(0xc6c8d1),
cursor: Some(Color::from_hex(0xc6c8d1)),
selection: Some(Color::from_hex(0x272c42)),
line_highlight: Some(Color::from_hex(0x1e2132)),
gutter: Some(Color::from_hex(0x444b71)),
statusbar_bg: Some(Color::from_hex(0x17171b)),
statusbar_fg: Some(Color::from_hex(0x818596)),
comment: Some(Color::from_hex(0x6b7089)),
keyword: Some(Color::from_hex(0x84a0c6)),
string: Some(Color::from_hex(0x89b8c2)),
function: Some(Color::from_hex(0xe2a478)),
variable: Some(Color::from_hex(0x89b8c2)),
r#type: Some(Color::from_hex(0x89b8c2)),
constant: Some(Color::from_hex(0xa093c7)),
operator: Some(Color::from_hex(0x84a0c6)),
tag: None,
error: Some(Color::from_hex(0xe27878)),
warning: Some(Color::from_hex(0xe27878)),
info: None,
success: None,
red: Some(Color::from_hex(0xe27878)),
orange: None,
yellow: Some(Color::from_hex(0xe27878)),
green: Some(Color::from_hex(0x89b8c2)),
cyan: Some(Color::from_hex(0x89b8c2)),
blue: Some(Color::from_hex(0xe2a478)),
purple: Some(Color::from_hex(0x84a0c6)),
magenta: Some(Color::from_hex(0xb4be82)),
};