use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Ocean"),
author: Cow::Borrowed("Chris Kempson (http://chriskempson.com)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2b303b),
fg: Color::from_hex(0xc0c5ce),
cursor: Some(Color::from_hex(0xc0c5ce)),
selection: Some(Color::from_hex(0x4f5b66)),
line_highlight: Some(Color::from_hex(0x343d46)),
gutter: Some(Color::from_hex(0x65737e)),
statusbar_bg: Some(Color::from_hex(0x343d46)),
statusbar_fg: Some(Color::from_hex(0xa7adba)),
comment: Some(Color::from_hex(0x65737e)),
keyword: Some(Color::from_hex(0xb48ead)),
string: Some(Color::from_hex(0xa3be8c)),
function: Some(Color::from_hex(0x8fa1b3)),
variable: Some(Color::from_hex(0xbf616a)),
r#type: Some(Color::from_hex(0xebcb8b)),
constant: Some(Color::from_hex(0xd08770)),
operator: Some(Color::from_hex(0xc0c5ce)),
tag: Some(Color::from_hex(0xbf616a)),
error: Some(Color::from_hex(0xbf616a)),
warning: Some(Color::from_hex(0xebcb8b)),
info: Some(Color::from_hex(0x8fa1b3)),
success: Some(Color::from_hex(0xa3be8c)),
red: Some(Color::from_hex(0xbf616a)),
orange: Some(Color::from_hex(0xd08770)),
yellow: Some(Color::from_hex(0xebcb8b)),
green: Some(Color::from_hex(0xa3be8c)),
cyan: Some(Color::from_hex(0x96b5b4)),
blue: Some(Color::from_hex(0x8fa1b3)),
purple: Some(Color::from_hex(0xb48ead)),
magenta: Some(Color::from_hex(0xab7967)),
};