use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("desertedoceanburnt"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x13232d),
fg: Color::from_hex(0xfffafd),
cursor: Some(Color::from_hex(0x204769)),
selection: Some(Color::from_hex(0x33dfef)),
line_highlight: None,
gutter: Some(Color::from_hex(0xccf0ff)),
statusbar_bg: Some(Color::from_hex(0x0085ca)),
statusbar_fg: Some(Color::from_hex(0x050709)),
comment: Some(Color::from_hex(0x8ac0da)),
keyword: Some(Color::from_hex(0xda938a)),
string: None,
function: None,
variable: Some(Color::from_hex(0xcaedfe)),
r#type: Some(Color::from_hex(0xe0c6b9)),
constant: Some(Color::from_hex(0xddaab7)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xc0c0c0)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xc0c0c0)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: None,
cyan: Some(Color::from_hex(0xe0c6b9)),
blue: None,
purple: Some(Color::from_hex(0xda938a)),
magenta: Some(Color::from_hex(0xd590aa)),
};