use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("0x96f"),
author: Cow::Borrowed("Filip Janevski (https://0x96f.dev/theme)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x262427),
fg: Color::from_hex(0xfcfcfc),
cursor: Some(Color::from_hex(0xfcfcfc)),
selection: Some(Color::from_hex(0x514f52)),
line_highlight: Some(Color::from_hex(0x3b393c)),
gutter: Some(Color::from_hex(0x676567)),
statusbar_bg: Some(Color::from_hex(0x3b393c)),
statusbar_fg: Some(Color::from_hex(0x7c7b7d)),
comment: Some(Color::from_hex(0x676567)),
keyword: Some(Color::from_hex(0xa093e2)),
string: Some(Color::from_hex(0xbcdf59)),
function: Some(Color::from_hex(0x49cae4)),
variable: Some(Color::from_hex(0xff7272)),
r#type: Some(Color::from_hex(0xffca58)),
constant: Some(Color::from_hex(0xfc9d6f)),
operator: Some(Color::from_hex(0xfcfcfc)),
tag: Some(Color::from_hex(0xff7272)),
error: Some(Color::from_hex(0xff7272)),
warning: Some(Color::from_hex(0xffca58)),
info: Some(Color::from_hex(0x49cae4)),
success: Some(Color::from_hex(0xbcdf59)),
red: Some(Color::from_hex(0xff7272)),
orange: Some(Color::from_hex(0xfc9d6f)),
yellow: Some(Color::from_hex(0xffca58)),
green: Some(Color::from_hex(0xbcdf59)),
cyan: Some(Color::from_hex(0xaee8f4)),
blue: Some(Color::from_hex(0x49cae4)),
purple: Some(Color::from_hex(0xa093e2)),
magenta: Some(Color::from_hex(0xff8787)),
};