use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("new-railscasts"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x212121),
fg: Color::from_hex(0xe6e1dc),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x004568)),
line_highlight: Some(Color::from_hex(0x282828)),
gutter: Some(Color::from_hex(0x707070)),
statusbar_bg: Some(Color::from_hex(0x606060)),
statusbar_fg: Some(Color::from_hex(0xe4e4e4)),
comment: Some(Color::from_hex(0xbc9458)),
keyword: Some(Color::from_hex(0xd8690f)),
string: Some(Color::from_hex(0x74d155)),
function: Some(Color::from_hex(0xffc66d)),
variable: Some(Color::from_hex(0xd7b0fc)),
r#type: Some(Color::from_hex(0xff5d4f)),
constant: Some(Color::from_hex(0x6d9cbe)),
operator: Some(Color::from_hex(0xcc7833)),
tag: Some(Color::from_hex(0xcc7833)),
error: Some(Color::from_hex(0xffffff)),
warning: Some(Color::from_hex(0xda4939)),
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: Some(Color::from_hex(0xda4939)),
green: Some(Color::from_hex(0x74d155)),
cyan: Some(Color::from_hex(0xff5d4f)),
blue: Some(Color::from_hex(0xffc66d)),
purple: Some(Color::from_hex(0xd8690f)),
magenta: Some(Color::from_hex(0xff8700)),
};