Jazzberry Jam
HEX: #A50B5E | Modern Palette
Color Specifications
#A50B5E
165, 11, 94
327°, 87% ,34%
0, 93, 43, 35
About Jazzberry Jam
Jazzberry Jam (#A50B5E) is a color with RGB(165, 11, 94) and HSL(327.7°, 87.5%, 34.5%). It is commonly associated with Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #0BA552, which creates strong contrast. Its triadic palette includes #5EA50B and #0B5EA5. The name comes from Jazzberry Jam (English).
- HEX: #A50B5E
- RGB: 165, 11, 94
- HSL: 327.7°, 87.5%, 34.5%
- Mood: Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #0BA552
- Triadic colors: #5EA50B, #0B5EA5
- The name comes from Jazzberry Jam (English).
Live Components
Color Palettes
Color Harmonies
Complementary
The color directly opposite on the color wheel — creates maximum contrast and vibrance.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
Triadic
Three colors equally spaced 120° apart — bold, balanced, and visually rich.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Tetradic (Square)
Four colors at 90° intervals — rich variety, best when one color dominates.
Monochromatic
Shades and tints of the same hue — cohesive, elegant, and easy to work with.
Shades & Tints
A seamless scale of #A50B5E from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'Jazzberry Jam' was introduced by Crayola in 1998 as part of their crayon color palette. Crayola is known for creating imaginative and evocative names for their colors, often combining familiar concepts to create something new and memorable. 'Jazzberry Jam' fits this pattern perfectly, aiming to capture a specific shade of magenta-purple with a lively, almost musical feel.
First Recorded Use
1998
Cultural Associations
As a Crayola color, 'Jazzberry Jam' is primarily recognized within the context of art supplies, particularly by children and artists who grew up with Crayola crayons. It doesn't have deep historical or cultural roots outside of its commercial introduction, but it contributes to the broader cultural lexicon of color names that are playful and descriptive. The 'jazz' element might subtly link it to concepts of creativity and spontaneity, while 'jam' grounds it in a familiar, appealing food item.
Code Snippets
/* Background */
.element {
background-color: #A50B5E;
}
/* Text */
.element {
color: #A50B5E;
}
/* Border */
.element {
border: 1px solid #A50B5E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#A50B5E,
#0BA552
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#A50B5E,
#0BA552
);
}
// SCSS variable
$jazzberry-jam: #A50B5E;
// With RGB channels (useful for rgba() usage)
$jazzberry-jam-r: 165;
$jazzberry-jam-g: 11;
$jazzberry-jam-b: 94;
// Usage
.element {
background-color: $jazzberry-jam;
color: rgba($jazzberry-jam-r, $jazzberry-jam-g, $jazzberry-jam-b, 0.8);
}