Purple Pizzazz
HEX: #FE4EDA | Modern Palette
Color Specifications
#FE4EDA
254, 78, 218
312°, 98% ,65%
0, 69, 14, 0
About Purple Pizzazz
Purple Pizzazz (#FE4EDA) is a color with RGB(254, 78, 218) and HSL(312.3°, 98.9%, 65.1%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #4EFE72, which creates strong contrast. Its triadic palette includes #DAFE4E and #4EDAFE. The name comes from Purple Pizzazz (English).
- HEX: #FE4EDA
- RGB: 254, 78, 218
- HSL: 312.3°, 98.9%, 65.1%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #4EFE72
- Triadic colors: #DAFE4E, #4EDAFE
- The name comes from Purple Pizzazz (English).
Live Components
Color Palettes
Purple Pizzazz #FE4EDA is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Purple Pizzazz #FE4EDA pairs with #4EFE72 as its complementary color, and #DAFE4E and #4EDAFE in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Purple Pizzazz' was introduced by Crayola in 1998 as part of their 'Gem Tones' collection. It is a bright magenta-purple, often described as a fuchsia or hot pink with a strong purple undertone. The name itself combines 'purple' (a primary color) with 'pizzazz,' an informal English word meaning 'an attractive combination of vitality and glamour.' This naming convention was common for Crayola to evoke a sense of excitement and vibrancy.
First Recorded Use
1990s (specifically 1998 by Crayola)
Cultural Associations
As a Crayola color, 'Purple Pizzazz' holds a nostalgic place for many who grew up in the late 90s and early 2000s. It's often associated with creativity, childhood art, and a playful aesthetic. The 'pizzazz' part of the name suggests energy, flair, and a certain boldness, which aligns with fashion and design trends of the era that often favored bright, attention-grabbing colors. It's a color that implies fun and exuberance.
Code Snippets
/* Background */
.element {
background-color: #FE4EDA;
}
/* Text */
.element {
color: #FE4EDA;
}
/* Border */
.element {
border: 1px solid #FE4EDA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FE4EDA,
#4EFE72
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FE4EDA,
#4EFE72
);
}
// SCSS variable
$purple-pizzazz: #FE4EDA;
// With RGB channels (useful for rgba() usage)
$purple-pizzazz-r: 254;
$purple-pizzazz-g: 78;
$purple-pizzazz-b: 218;
// Usage
.element {
background-color: $purple-pizzazz;
color: rgba($purple-pizzazz-r, $purple-pizzazz-g, $purple-pizzazz-b, 0.8);
}