use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("sexy-railscasts"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x222222),
fg: Color::from_hex(0xe6e1dc),
cursor: Some(Color::from_hex(0xffffff)),
selection: Some(Color::from_hex(0x5a647e)),
line_highlight: Some(Color::from_hex(0x333435)),
gutter: Some(Color::from_hex(0x383838)),
statusbar_bg: None,
statusbar_fg: None,
comment: Some(Color::from_hex(0xbc9458)),
keyword: Some(Color::from_hex(0xcc7833)),
string: Some(Color::from_hex(0xa5c261)),
function: Some(Color::from_hex(0xffc66d)),
variable: Some(Color::from_hex(0xd0d0ff)),
r#type: Some(Color::from_hex(0xda4939)),
constant: Some(Color::from_hex(0x6d9cbe)),
operator: None,
tag: None,
error: Some(Color::from_hex(0xffffff)),
warning: None,
info: None,
success: None,
red: Some(Color::from_hex(0xffffff)),
orange: None,
yellow: None,
green: Some(Color::from_hex(0xa5c261)),
cyan: Some(Color::from_hex(0xda4939)),
blue: Some(Color::from_hex(0xffc66d)),
purple: Some(Color::from_hex(0xcc7833)),
magenta: Some(Color::from_hex(0xcc7833)),
};