use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Rippedcasts"),
author: Cow::Borrowed(""),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x232323),
fg: Color::from_hex(0xe6e1de),
cursor: Some(Color::from_hex(0x232323)),
selection: Some(Color::from_hex(0x555577)),
line_highlight: None,
gutter: None,
statusbar_bg: Some(Color::from_hex(0x000000)),
statusbar_fg: Some(Color::from_hex(0xa5baf1)),
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(0xb0c4de)),
r#type: Some(Color::from_hex(0xffffff)),
constant: Some(Color::from_hex(0x6d9cbe)),
operator: None,
tag: None,
error: None,
warning: None,
info: None,
success: None,
red: None,
orange: None,
yellow: None,
green: Some(Color::from_hex(0xa5c261)),
cyan: Some(Color::from_hex(0x6d9cbe)),
blue: Some(Color::from_hex(0xffc66d)),
purple: Some(Color::from_hex(0xcc7833)),
magenta: Some(Color::from_hex(0xb0c4de)),
};