use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("nets-away"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x000000),
fg: Color::from_hex(0xa3a3a3),
cursor: Some(Color::from_hex(0xf9f9f9)),
selection: Some(Color::from_hex(0xf9f9ff)),
line_highlight: Some(Color::from_hex(0x222e30)),
gutter: Some(Color::from_hex(0xc2c2c2)),
statusbar_bg: Some(Color::from_hex(0xadadad)),
statusbar_fg: Some(Color::from_hex(0x1b1c1c)),
comment: Some(Color::from_hex(0x4d4d4d)),
keyword: Some(Color::from_hex(0x5c5c5c)),
string: Some(Color::from_hex(0xa1a6a8)),
function: Some(Color::from_hex(0xa1a1a1)),
variable: Some(Color::from_hex(0x787878)),
r#type: Some(Color::from_hex(0x787878)),
constant: Some(Color::from_hex(0xa1a6a8)),
operator: Some(Color::from_hex(0x4d4d4d)),
tag: Some(Color::from_hex(0xbd9800)),
error: Some(Color::from_hex(0xa6a6a6)),
warning: Some(Color::from_hex(0xa1a6a8)),
info: None,
success: None,
red: Some(Color::from_hex(0xa6a6a6)),
orange: None,
yellow: Some(Color::from_hex(0xa1a6a8)),
green: Some(Color::from_hex(0xa1a6a8)),
cyan: Some(Color::from_hex(0x787878)),
blue: Some(Color::from_hex(0xa1a1a1)),
purple: Some(Color::from_hex(0x5c5c5c)),
magenta: Some(Color::from_hex(0xfffdf7)),
};