use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Oxocarbon Dark"),
author: Cow::Borrowed("shaunsingh/IBM, Tinted Theming (https://github.com/tinted-theming)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x161616),
fg: Color::from_hex(0xf2f4f8),
cursor: Some(Color::from_hex(0xf2f4f8)),
selection: Some(Color::from_hex(0x393939)),
line_highlight: Some(Color::from_hex(0x262626)),
gutter: Some(Color::from_hex(0x525252)),
statusbar_bg: Some(Color::from_hex(0x262626)),
statusbar_fg: Some(Color::from_hex(0xdde1e6)),
comment: Some(Color::from_hex(0x525252)),
keyword: Some(Color::from_hex(0xbe95ff)),
string: Some(Color::from_hex(0x42be65)),
function: Some(Color::from_hex(0x33b1ff)),
variable: Some(Color::from_hex(0xee5396)),
r#type: Some(Color::from_hex(0xff6f00)),
constant: Some(Color::from_hex(0xff7eb6)),
operator: Some(Color::from_hex(0xf2f4f8)),
tag: Some(Color::from_hex(0xee5396)),
error: Some(Color::from_hex(0xee5396)),
warning: Some(Color::from_hex(0xff6f00)),
info: Some(Color::from_hex(0x33b1ff)),
success: Some(Color::from_hex(0x42be65)),
red: Some(Color::from_hex(0xee5396)),
orange: Some(Color::from_hex(0xff7eb6)),
yellow: Some(Color::from_hex(0xff6f00)),
green: Some(Color::from_hex(0x42be65)),
cyan: Some(Color::from_hex(0x3ddbd9)),
blue: Some(Color::from_hex(0x33b1ff)),
purple: Some(Color::from_hex(0xbe95ff)),
magenta: Some(Color::from_hex(0x82cfff)),
};