use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("seti"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x151718),
fg: Color::from_hex(0xd4d7d6),
cursor: Some(Color::from_hex(0xffe792)),
selection: Some(Color::from_hex(0x4fa5c7)),
line_highlight: Some(Color::from_hex(0x282a2b)),
gutter: Some(Color::from_hex(0x757777)),
statusbar_bg: Some(Color::from_hex(0x4c4f4f)),
statusbar_fg: Some(Color::from_hex(0xd4d7d6)),
comment: Some(Color::from_hex(0x41535b)),
keyword: Some(Color::from_hex(0x9fca56)),
string: Some(Color::from_hex(0x55b5db)),
function: Some(Color::from_hex(0x55b5db)),
variable: Some(Color::from_hex(0xe6cd69)),
r#type: Some(Color::from_hex(0x55b5db)),
constant: Some(Color::from_hex(0xcd3f45)),
operator: Some(Color::from_hex(0x9fca56)),
tag: Some(Color::from_hex(0x55b5db)),
error: Some(Color::from_hex(0xf8f8f8)),
warning: Some(Color::from_hex(0xf8f8f8)),
info: None,
success: None,
red: Some(Color::from_hex(0xf8f8f8)),
orange: None,
yellow: Some(Color::from_hex(0xf8f8f8)),
green: Some(Color::from_hex(0x55b5db)),
cyan: Some(Color::from_hex(0x55b5db)),
blue: Some(Color::from_hex(0x55b5db)),
purple: Some(Color::from_hex(0x9fca56)),
magenta: Some(Color::from_hex(0xff026a)),
};