Eggplant
HEX: #614051 | Modern Palette
Color Specifications
#614051
97, 64, 81
329°, 34% ,38%
0, 34.02, 16.49, 61.96
About Eggplant
Eggplant (#614051) is a color with RGB(97, 64, 81) and HSL(329.09°, 34.02%, 38.04%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #406150, which creates strong contrast. Its triadic palette includes #516140 and #405161. The name comes from vatingana (Sanskrit).
- HEX: #614051
- RGB: 97, 64, 81
- HSL: 329.09°, 34.02%, 38.04%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #406150
- Triadic colors: #516140, #405161
- The name comes from vatingana (Sanskrit).
Live Components
Color Palettes
Eggplant #614051 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
Eggplant #614051 pairs with #406150 as its complementary color, and #516140 and #405161 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 word 'eggplant' has a fascinating journey through various languages. It originated from the Sanskrit 'vatingana'. From there, it traveled to Persian as 'bādingān', then to Arabic as 'al-bādhijān'. Spanish adopted it as 'berenjena', and Portuguese as 'beringela'. English borrowed 'aubergine' from French, which in turn came from Catalan 'albergínia', also derived from Arabic. The term 'eggplant' itself emerged in English in the mid-18th century, likely due to the fruit's resemblance to a goose or hen's egg in some early European varieties.
First Recorded Use
The earliest known cultivation and use of eggplant traces back to ancient India.
Cultural Associations
Eggplant is a staple in many cuisines worldwide, particularly in Mediterranean, Middle Eastern, and South Asian dishes. It is highly versatile and can be grilled, baked, fried, roasted, or stewed. In some cultures, it holds symbolic significance; for example, in India, it is sometimes associated with fertility. Its distinctive purple color is also often used in art and design.
Code Snippets
/* Background */
.element {
background-color: #614051;
}
/* Text */
.element {
color: #614051;
}
/* Border */
.element {
border: 1px solid #614051;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#614051,
#408260
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#614051,
#408260
);
}
// SCSS variable
$eggplant: #614051;
// With RGB channels (useful for rgba() usage)
$eggplant-r: 97;
$eggplant-g: 64;
$eggplant-b: 81;
// Usage
.element {
background-color: $eggplant;
color: rgba($eggplant-r, $eggplant-g, $eggplant-b, 0.8);
}