use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("selenized-dark"),
author: Cow::Borrowed(
"Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali",
),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x103c48),
fg: Color::from_hex(0xadbcbc),
cursor: Some(Color::from_hex(0xadbcbc)),
selection: Some(Color::from_hex(0x2d5b69)),
line_highlight: Some(Color::from_hex(0x184956)),
gutter: Some(Color::from_hex(0x72898f)),
statusbar_bg: Some(Color::from_hex(0x184956)),
statusbar_fg: Some(Color::from_hex(0x72898f)),
comment: Some(Color::from_hex(0x72898f)),
keyword: Some(Color::from_hex(0xaf88eb)),
string: Some(Color::from_hex(0x75b938)),
function: Some(Color::from_hex(0x4695f7)),
variable: Some(Color::from_hex(0xfa5750)),
r#type: Some(Color::from_hex(0xdbb32d)),
constant: Some(Color::from_hex(0xed8649)),
operator: Some(Color::from_hex(0xadbcbc)),
tag: Some(Color::from_hex(0xfa5750)),
error: Some(Color::from_hex(0xfa5750)),
warning: Some(Color::from_hex(0xdbb32d)),
info: Some(Color::from_hex(0x4695f7)),
success: Some(Color::from_hex(0x75b938)),
red: Some(Color::from_hex(0xfa5750)),
orange: Some(Color::from_hex(0xed8649)),
yellow: Some(Color::from_hex(0xdbb32d)),
green: Some(Color::from_hex(0x75b938)),
cyan: Some(Color::from_hex(0x41c7b9)),
blue: Some(Color::from_hex(0x4695f7)),
purple: Some(Color::from_hex(0xaf88eb)),
magenta: Some(Color::from_hex(0xf275be)),
};