use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("thor"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x090a1b),
fg: Color::from_hex(0xf6f3e8),
cursor: None,
selection: Some(Color::from_hex(0x262d51)),
line_highlight: Some(Color::from_hex(0x121212)),
gutter: Some(Color::from_hex(0x3d3d3d)),
statusbar_bg: Some(Color::from_hex(0x202020)),
statusbar_fg: Some(Color::from_hex(0xcccccc)),
comment: Some(Color::from_hex(0x7c7c7c)),
keyword: Some(Color::from_hex(0xfe3853)),
string: Some(Color::from_hex(0x5dff9e)),
function: Some(Color::from_hex(0x6fd3ff)),
variable: Some(Color::from_hex(0x5789f9)),
r#type: Some(Color::from_hex(0x5789f9)),
constant: Some(Color::from_hex(0x0a9bfe)),
operator: Some(Color::from_hex(0x5bf7bb)),
tag: Some(Color::from_hex(0xffff69)),
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: Some(Color::from_hex(0xffff69)),
green: Some(Color::from_hex(0x5dff9e)),
cyan: Some(Color::from_hex(0x5789f9)),
blue: Some(Color::from_hex(0x6fd3ff)),
purple: Some(Color::from_hex(0xfe3853)),
magenta: Some(Color::from_hex(0xfe3853)),
};