use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Obsidian"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x293134),
fg: Color::from_hex(0xe0e2e4),
cursor: Some(Color::from_hex(0x626262)),
selection: Some(Color::from_hex(0x804000)),
line_highlight: Some(Color::from_hex(0x2f393c)),
gutter: None,
statusbar_bg: Some(Color::from_hex(0x293134)),
statusbar_fg: Some(Color::from_hex(0xb2b2b2)),
comment: Some(Color::from_hex(0x7d8c93)),
keyword: Some(Color::from_hex(0x93c763)),
string: Some(Color::from_hex(0xec7600)),
function: Some(Color::from_hex(0xe0e2e4)),
variable: Some(Color::from_hex(0x678cb1)),
r#type: Some(Color::from_hex(0x93c763)),
constant: Some(Color::from_hex(0xa082bd)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xec7600)),
cyan: Some(Color::from_hex(0xa082bd)),
blue: Some(Color::from_hex(0xe0e2e4)),
purple: Some(Color::from_hex(0x93c763)),
magenta: Some(Color::from_hex(0x678cb1)),
};