use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("magellan"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xbcbcb9),
cursor: None,
selection: None,
line_highlight: Some(Color::from_hex(0x1c1c1c)),
gutter: Some(Color::from_hex(0x424242)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0x37404c)),
keyword: Some(Color::from_hex(0x6a76fc)),
string: Some(Color::from_hex(0x125f98)),
function: Some(Color::from_hex(0x1675d4)),
variable: Some(Color::from_hex(0x1675d4)),
r#type: Some(Color::from_hex(0x7f183a)),
constant: Some(Color::from_hex(0x125f98)),
operator: Some(Color::from_hex(0x1675d4)),
tag: None,
error: Some(Color::from_hex(0x870000)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0x870000)),
orange: None,
yellow: Some(Color::from_hex(0x3a1412)),
green: Some(Color::from_hex(0x125f98)),
cyan: Some(Color::from_hex(0x7f183a)),
blue: Some(Color::from_hex(0x1675d4)),
purple: Some(Color::from_hex(0x6a76fc)),
magenta: Some(Color::from_hex(0x865c12)),
};