use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("OneDark Dark"),
author: Cow::Borrowed("olimorris (https://github.com/olimorris)"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xabb2bf),
cursor: Some(Color::from_hex(0xabb2bf)),
selection: Some(Color::from_hex(0x2c313a)),
line_highlight: Some(Color::from_hex(0x1c1f24)),
gutter: Some(Color::from_hex(0x434852)),
statusbar_bg: Some(Color::from_hex(0x1c1f24)),
statusbar_fg: Some(Color::from_hex(0x565c64)),
comment: Some(Color::from_hex(0x434852)),
keyword: Some(Color::from_hex(0xd55fde)),
string: Some(Color::from_hex(0x89ca78)),
function: Some(Color::from_hex(0x61afef)),
variable: Some(Color::from_hex(0xef596f)),
r#type: Some(Color::from_hex(0xe5c07b)),
constant: Some(Color::from_hex(0xd19a66)),
operator: Some(Color::from_hex(0xabb2bf)),
tag: Some(Color::from_hex(0xef596f)),
error: Some(Color::from_hex(0xef596f)),
warning: Some(Color::from_hex(0xe5c07b)),
info: Some(Color::from_hex(0x61afef)),
success: Some(Color::from_hex(0x89ca78)),
red: Some(Color::from_hex(0xef596f)),
orange: Some(Color::from_hex(0xd19a66)),
yellow: Some(Color::from_hex(0xe5c07b)),
green: Some(Color::from_hex(0x89ca78)),
cyan: Some(Color::from_hex(0x2bbac5)),
blue: Some(Color::from_hex(0x61afef)),
purple: Some(Color::from_hex(0xd55fde)),
magenta: Some(Color::from_hex(0xbe5046)),
};