use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("desertedocean"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x102d33),
fg: Color::from_hex(0xffe9e0),
cursor: Some(Color::from_hex(0x007799)),
selection: Some(Color::from_hex(0x33dfef)),
line_highlight: None,
gutter: Some(Color::from_hex(0xccf0ff)),
statusbar_bg: Some(Color::from_hex(0x00a0d0)),
statusbar_fg: Some(Color::from_hex(0x050709)),
comment: Some(Color::from_hex(0x69b9da)),
keyword: Some(Color::from_hex(0xff836e)),
string: None,
function: None,
variable: Some(Color::from_hex(0xffddee)),
r#type: Some(Color::from_hex(0xffb592)),
constant: Some(Color::from_hex(0xff6b5b)),
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(0xffb592)),
blue: None,
purple: Some(Color::from_hex(0xff836e)),
magenta: Some(Color::from_hex(0xff8076)),
};