use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Rebecca"),
author: Cow::Borrowed(
"Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme)",
),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x292a44),
fg: Color::from_hex(0xf1eff8),
cursor: Some(Color::from_hex(0xf1eff8)),
selection: Some(Color::from_hex(0x383a62)),
line_highlight: Some(Color::from_hex(0x663399)),
gutter: Some(Color::from_hex(0x666699)),
statusbar_bg: Some(Color::from_hex(0x663399)),
statusbar_fg: Some(Color::from_hex(0xa0a0c5)),
comment: Some(Color::from_hex(0x666699)),
keyword: Some(Color::from_hex(0x7aa5ff)),
string: Some(Color::from_hex(0x6dfedf)),
function: Some(Color::from_hex(0x2de0a7)),
variable: Some(Color::from_hex(0xa0a0c5)),
r#type: Some(Color::from_hex(0xae81ff)),
constant: Some(Color::from_hex(0xefe4a1)),
operator: Some(Color::from_hex(0xf1eff8)),
tag: Some(Color::from_hex(0xa0a0c5)),
error: Some(Color::from_hex(0xa0a0c5)),
warning: Some(Color::from_hex(0xae81ff)),
info: Some(Color::from_hex(0x2de0a7)),
success: Some(Color::from_hex(0x6dfedf)),
red: Some(Color::from_hex(0xa0a0c5)),
orange: Some(Color::from_hex(0xefe4a1)),
yellow: Some(Color::from_hex(0xae81ff)),
green: Some(Color::from_hex(0x6dfedf)),
cyan: Some(Color::from_hex(0x8eaee0)),
blue: Some(Color::from_hex(0x2de0a7)),
purple: Some(Color::from_hex(0x7aa5ff)),
magenta: Some(Color::from_hex(0xff79c6)),
};