use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("blues"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x1c1c1c),
fg: Color::from_hex(0xc6c6c6),
cursor: None,
selection: Some(Color::from_hex(0x444444)),
line_highlight: Some(Color::from_hex(0x303030)),
gutter: Some(Color::from_hex(0x9e9e9e)),
statusbar_bg: Some(Color::from_hex(0x9e9e9e)),
statusbar_fg: Some(Color::from_hex(0x262626)),
comment: Some(Color::from_hex(0x6c6c6c)),
keyword: Some(Color::from_hex(0x5fafff)),
string: None,
function: None,
variable: Some(Color::from_hex(0x8787ff)),
r#type: Some(Color::from_hex(0x5fafff)),
constant: Some(Color::from_hex(0x5fd7af)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xff5f5f)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xff5f5f)),
orange: None,
yellow: Some(Color::from_hex(0x8787af)),
green: Some(Color::from_hex(0x00ff00)),
cyan: Some(Color::from_hex(0x5fafff)),
blue: None,
purple: Some(Color::from_hex(0x5fafff)),
magenta: Some(Color::from_hex(0xa8a8a8)),
};