Light Carmine Pink
HEX: #E66771 | Modern Palette
Color Specifications
#E66771
230, 103, 113
355°, 71% ,65%
0, 55, 51, 10
About Light Carmine Pink
Light Carmine Pink (#E66771) is a color with RGB(230, 103, 113) and HSL(355.3°, 71.8%, 65.3%). It is commonly associated with Energetic, Playful moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #67E6DC, which creates strong contrast. Its triadic palette includes #71E667 and #6771E6. The name comes from Light Carmine Pink (English).
- HEX: #E66771
- RGB: 230, 103, 113
- HSL: 355.3°, 71.8%, 65.3%
- Mood: Energetic, Playful
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #67E6DC
- Triadic colors: #71E667, #6771E6
- The name comes from Light Carmine Pink (English).
Live Components
Color Palettes
Light Carmine Pink #E66771 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
Light Carmine Pink #E66771 pairs with #67E6DC as its complementary color, and #71E667 and #6771E6 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 carmine has a rich history, derived from carminic acid produced by cochineal insects, primarily found in Mexico and South America. It was highly valued by indigenous cultures and later by Europeans after the Spanish conquest. Carmine was a significant dye and pigment for textiles, paints, and cosmetics for centuries. 'Pink' as a color name in English emerged in the 17th century, referring to the flower. The combination 'Carmine Pink' or 'Light Carmine Pink' represents a specific shade within the broader pink-red spectrum, often implying a slightly muted or softer version of a true carmine red, leaning more towards pink. Its usage became more prevalent with the advent of standardized color charts and commercial color production in the late 19th and 20th centuries.
First Recorded Use
While 'carmine' and 'pink' have much older origins, the specific compound name 'Light Carmine Pink' as a distinct color descriptor likely emerged with the standardization of color names in art, fashion, and commercial dyes. 'Carmine' as a pigment dates back centuries (from cochineal insects), and 'pink' as a color name became common in the 17th century. The 'light' modifier further refines it, suggesting a more modern, nuanced approach to color naming.
Cultural Associations
This color, being a shade of pink, often carries associations with femininity, sweetness, romance, and tenderness in Western cultures. The 'carmine' aspect might lend it a touch of classic elegance or a hint of a deeper, more traditional red undertone compared to a pure, bright pink. It can evoke feelings of warmth and gentleness. In fashion and interior design, it might be used to create a soft, inviting, or romantic atmosphere.
Code Snippets
/* Background */
.element {
background-color: #E66771;
}
/* Text */
.element {
color: #E66771;
}
/* Border */
.element {
border: 1px solid #E66771;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E66771,
#67E6DC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E66771,
#67E6DC
);
}
// SCSS variable
$light-carmine-pink: #E66771;
// With RGB channels (useful for rgba() usage)
$light-carmine-pink-r: 230;
$light-carmine-pink-g: 103;
$light-carmine-pink-b: 113;
// Usage
.element {
background-color: $light-carmine-pink;
color: rgba($light-carmine-pink-r, $light-carmine-pink-g, $light-carmine-pink-b, 0.8);
}