use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("SerialExperimentsLain"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x152126),
fg: Color::from_hex(0xc0b1c2),
cursor: Some(Color::from_hex(0xf9f9f9)),
selection: Some(Color::from_hex(0xf9f9ff)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0x184563)),
statusbar_bg: Some(Color::from_hex(0x050842)),
statusbar_fg: Some(Color::from_hex(0x0e7291)),
comment: Some(Color::from_hex(0x616f73)),
keyword: Some(Color::from_hex(0x31cc43)),
string: Some(Color::from_hex(0x79c7ad)),
function: Some(Color::from_hex(0x04c0c7)),
variable: Some(Color::from_hex(0x876bd6)),
r#type: Some(Color::from_hex(0x556a92)),
constant: Some(Color::from_hex(0xa2a7a9)),
operator: Some(Color::from_hex(0xe63d00)),
tag: Some(Color::from_hex(0xbd9700)),
error: Some(Color::from_hex(0xb39ca4)),
warning: Some(Color::from_hex(0xa2a7a9)),
info: None,
success: None,
red: Some(Color::from_hex(0xb39ca4)),
orange: None,
yellow: Some(Color::from_hex(0xa2a7a9)),
green: Some(Color::from_hex(0x79c7ad)),
cyan: Some(Color::from_hex(0x556a92)),
blue: Some(Color::from_hex(0x04c0c7)),
purple: Some(Color::from_hex(0x31cc43)),
magenta: Some(Color::from_hex(0x759fad)),
};