use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Paraiso"),
author: Cow::Borrowed("Jan T. Sott"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x2f1e2e),
fg: Color::from_hex(0xa39e9b),
cursor: Some(Color::from_hex(0xa39e9b)),
selection: Some(Color::from_hex(0x4f424c)),
line_highlight: Some(Color::from_hex(0x41323f)),
gutter: Some(Color::from_hex(0x776e71)),
statusbar_bg: Some(Color::from_hex(0x41323f)),
statusbar_fg: Some(Color::from_hex(0x8d8687)),
comment: Some(Color::from_hex(0x776e71)),
keyword: Some(Color::from_hex(0x815ba4)),
string: Some(Color::from_hex(0x48b685)),
function: Some(Color::from_hex(0x06b6ef)),
variable: Some(Color::from_hex(0xef6155)),
r#type: Some(Color::from_hex(0xfec418)),
constant: Some(Color::from_hex(0xf99b15)),
operator: Some(Color::from_hex(0xa39e9b)),
tag: Some(Color::from_hex(0xef6155)),
error: Some(Color::from_hex(0xef6155)),
warning: Some(Color::from_hex(0xfec418)),
info: Some(Color::from_hex(0x06b6ef)),
success: Some(Color::from_hex(0x48b685)),
red: Some(Color::from_hex(0xef6155)),
orange: Some(Color::from_hex(0xf99b15)),
yellow: Some(Color::from_hex(0xfec418)),
green: Some(Color::from_hex(0x48b685)),
cyan: Some(Color::from_hex(0x5bc4bf)),
blue: Some(Color::from_hex(0x06b6ef)),
purple: Some(Color::from_hex(0x815ba4)),
magenta: Some(Color::from_hex(0xe96ba8)),
};