Jelly Bean
HEX: #DA614E | Modern Palette
Color Specifications
#DA614E
218, 97, 78
8°, 64% ,85%
0, 55.5, 64.22, 14.51
About Jelly Bean
Jelly Bean (#DA614E) is a color with RGB(218, 97, 78) and HSL(8.14°, 64.22%, 85.49%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #4EC7DA, which creates strong contrast. Its triadic palette includes #4EDA61 and #614EDA. The name comes from Jelly Bean (English).
- HEX: #DA614E
- RGB: 218, 97, 78
- HSL: 8.14°, 64.22%, 85.49%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #4EC7DA
- Triadic colors: #4EDA61, #614EDA
- The name comes from Jelly Bean (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 #DA614E from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#929247
#77774F
#DB5F5F
#868686
Frequently Asked Questions
Name, History & Etymology
History
The exact origin of the jelly bean is somewhat debated, but it is generally believed to have evolved from Turkish delight and similar jelly candies, combined with the sugar-panning technique used for Jordan almonds. William Schrafft, a Boston candy maker, is sometimes credited with inventing the jelly bean in 1861, encouraging people to send them to soldiers during the American Civil War. However, the first known advertisement for jelly beans appeared in the American publication 'The Chicago Daily News' in 1886. They gained significant popularity in the early 20th century, particularly around Easter.
First Recorded Use
1860s-1880s (exact date debated, but references appear in the 1880s)
Cultural Associations
Jelly beans are strongly associated with Easter in many Western cultures, often included in Easter baskets. They are also a popular candy for general consumption and have been famously associated with U.S. President Ronald Reagan, who kept jars of them on his desk and served them at meetings. The wide variety of flavors, including 'gourmet' and 'gross' flavors, has contributed to their enduring appeal and novelty.
Code Snippets
/* Background */
.element {
background-color: #DA614E;
}
/* Text */
.element {
color: #DA614E;
}
/* Border */
.element {
border: 1px solid #DA614E;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DA614E,
#C2EBF2
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DA614E,
#C2EBF2
);
}
// SCSS variable
$jelly-bean: #DA614E;
// With RGB channels (useful for rgba() usage)
$jelly-bean-r: 218;
$jelly-bean-g: 97;
$jelly-bean-b: 78;
// Usage
.element {
background-color: $jelly-bean;
color: rgba($jelly-bean-r, $jelly-bean-g, $jelly-bean-b, 0.8);
}