use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Stella"),
author: Cow::Borrowed("Shrimpram"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2b213c),
fg: Color::from_hex(0x998bad),
cursor: Some(Color::from_hex(0x998bad)),
selection: Some(Color::from_hex(0x4d4160)),
line_highlight: Some(Color::from_hex(0x362b48)),
gutter: Some(Color::from_hex(0x655978)),
statusbar_bg: Some(Color::from_hex(0x362b48)),
statusbar_fg: Some(Color::from_hex(0x7f7192)),
comment: Some(Color::from_hex(0x655978)),
keyword: Some(Color::from_hex(0xc594ff)),
string: Some(Color::from_hex(0xacc79b)),
function: Some(Color::from_hex(0xa5aad4)),
variable: Some(Color::from_hex(0xc79987)),
r#type: Some(Color::from_hex(0xc7c691)),
constant: Some(Color::from_hex(0x8865c6)),
operator: Some(Color::from_hex(0x998bad)),
tag: Some(Color::from_hex(0xc79987)),
error: Some(Color::from_hex(0xc79987)),
warning: Some(Color::from_hex(0xc7c691)),
info: Some(Color::from_hex(0xa5aad4)),
success: Some(Color::from_hex(0xacc79b)),
red: Some(Color::from_hex(0xc79987)),
orange: Some(Color::from_hex(0x8865c6)),
yellow: Some(Color::from_hex(0xc7c691)),
green: Some(Color::from_hex(0xacc79b)),
cyan: Some(Color::from_hex(0x9bc7bf)),
blue: Some(Color::from_hex(0xa5aad4)),
purple: Some(Color::from_hex(0xc594ff)),
magenta: Some(Color::from_hex(0xc7ab87)),
};