use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("OceanicNext"),
author: Cow::Borrowed("https://github.com/voronianski/oceanic-next-color-scheme"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1b2b34),
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(0xc594c5)),
string: Some(Color::from_hex(0x99c794)),
function: Some(Color::from_hex(0x6699cc)),
variable: Some(Color::from_hex(0xec5f67)),
r#type: Some(Color::from_hex(0xfac863)),
constant: Some(Color::from_hex(0xf99157)),
operator: Some(Color::from_hex(0xc0c5ce)),
tag: Some(Color::from_hex(0xec5f67)),
error: Some(Color::from_hex(0xec5f67)),
warning: Some(Color::from_hex(0xfac863)),
info: Some(Color::from_hex(0x6699cc)),
success: Some(Color::from_hex(0x99c794)),
red: Some(Color::from_hex(0xec5f67)),
orange: Some(Color::from_hex(0xf99157)),
yellow: Some(Color::from_hex(0xfac863)),
green: Some(Color::from_hex(0x99c794)),
cyan: Some(Color::from_hex(0x5fb3b3)),
blue: Some(Color::from_hex(0x6699cc)),
purple: Some(Color::from_hex(0xc594c5)),
magenta: Some(Color::from_hex(0xab7967)),
};