use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Framer"),
author: Cow::Borrowed("Framer (Maintained by Jesse Hoyos)"),
variant: Variant::Dark,
contrast: Contrast::High,
bg: Color::from_hex(0x181818),
fg: Color::from_hex(0xd0d0d0),
cursor: Some(Color::from_hex(0xd0d0d0)),
selection: Some(Color::from_hex(0x464646)),
line_highlight: Some(Color::from_hex(0x151515)),
gutter: Some(Color::from_hex(0x747474)),
statusbar_bg: Some(Color::from_hex(0x151515)),
statusbar_fg: Some(Color::from_hex(0xb9b9b9)),
comment: Some(Color::from_hex(0x747474)),
keyword: Some(Color::from_hex(0xba8cfc)),
string: Some(Color::from_hex(0x32ccdc)),
function: Some(Color::from_hex(0x20bcfc)),
variable: Some(Color::from_hex(0xfd886b)),
r#type: Some(Color::from_hex(0xfecb6e)),
constant: Some(Color::from_hex(0xfc4769)),
operator: Some(Color::from_hex(0xd0d0d0)),
tag: Some(Color::from_hex(0xfd886b)),
error: Some(Color::from_hex(0xfd886b)),
warning: Some(Color::from_hex(0xfecb6e)),
info: Some(Color::from_hex(0x20bcfc)),
success: Some(Color::from_hex(0x32ccdc)),
red: Some(Color::from_hex(0xfd886b)),
orange: Some(Color::from_hex(0xfc4769)),
yellow: Some(Color::from_hex(0xfecb6e)),
green: Some(Color::from_hex(0x32ccdc)),
cyan: Some(Color::from_hex(0xacddfd)),
blue: Some(Color::from_hex(0x20bcfc)),
purple: Some(Color::from_hex(0xba8cfc)),
magenta: Some(Color::from_hex(0xb15f4a)),
};