use crate::{Color, Contrast, Theme, Variant};
use alloc::borrow::Cow;
pub const THEME: Theme = Theme {
name: Cow::Borrowed("Catppuccin Frappe"),
author: Cow::Borrowed("https://github.com/catppuccin/catppuccin"),
variant: Variant::Dark,
contrast: Contrast::Normal,
bg: Color::from_hex(0x303446),
fg: Color::from_hex(0xc6d0f5),
cursor: Some(Color::from_hex(0xc6d0f5)),
selection: Some(Color::from_hex(0x414559)),
line_highlight: Some(Color::from_hex(0x292c3c)),
gutter: Some(Color::from_hex(0x51576d)),
statusbar_bg: Some(Color::from_hex(0x292c3c)),
statusbar_fg: Some(Color::from_hex(0x626880)),
comment: Some(Color::from_hex(0x51576d)),
keyword: Some(Color::from_hex(0xca9ee6)),
string: Some(Color::from_hex(0xa6d189)),
function: Some(Color::from_hex(0x8caaee)),
variable: Some(Color::from_hex(0xe78284)),
r#type: Some(Color::from_hex(0xe5c890)),
constant: Some(Color::from_hex(0xef9f76)),
operator: Some(Color::from_hex(0xc6d0f5)),
tag: Some(Color::from_hex(0xe78284)),
error: Some(Color::from_hex(0xe78284)),
warning: Some(Color::from_hex(0xe5c890)),
info: Some(Color::from_hex(0x8caaee)),
success: Some(Color::from_hex(0xa6d189)),
red: Some(Color::from_hex(0xe78284)),
orange: Some(Color::from_hex(0xef9f76)),
yellow: Some(Color::from_hex(0xe5c890)),
green: Some(Color::from_hex(0xa6d189)),
cyan: Some(Color::from_hex(0x81c8be)),
blue: Some(Color::from_hex(0x8caaee)),
purple: Some(Color::from_hex(0xca9ee6)),
magenta: Some(Color::from_hex(0xeebebe)),
};