use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("railscasts"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x121212),
fg: Color::from_hex(0xe4e4e4),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x5f5f87)),
line_highlight: Some(Color::from_hex(0x1c1c1c)),
gutter: Some(Color::from_hex(0x666666)),
statusbar_bg: Some(Color::from_hex(0x606060)),
statusbar_fg: Some(Color::from_hex(0xe4e4e4)),
comment: Some(Color::from_hex(0xaf875f)),
keyword: Some(Color::from_hex(0xaf5f00)),
string: Some(Color::from_hex(0x87af5f)),
function: None,
variable: Some(Color::from_hex(0xaf5f5f)),
r#type: Some(Color::from_hex(0xdf5f5f)),
constant: Some(Color::from_hex(0x6d9cbe)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0x800000)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0x800000)),
green: Some(Color::from_hex(0x87af5f)),
cyan: Some(Color::from_hex(0xdf5f5f)),
blue: None,
purple: Some(Color::from_hex(0xaf5f00)),
magenta: Some(Color::from_hex(0xff8700)),
};