Light Carmine Pink

HEX: #E66771 | Modern Palette

On White
3.21:1
FAIL
On Black
6.54:1
PASS

Color Specifications

HEX
#E66771
RGB
230, 103, 113
HSL
355°, 71% ,65%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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 #E66771 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9B9B6C
Protanopia #7E7E72
Tritanopia #E56868
Achromatopsia #909090

Frequently Asked Questions

Light Carmine Pink (#E66771) is a color with RGB(230, 103, 113) and HSL(355.3°, 71.8%, 65.3%).

#E66771 pairs strongly with #67E6DC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#E66771 is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#E66771 is commonly associated with Energetic, Playful.

The name Light Carmine Pink is linked to Light Carmine Pink from English, meaning A light, reddish-pink color, often associated with the pigment carmine..

Name, History & Etymology

Origin Word Light Carmine Pink
Meaning A light, reddish-pink color, often associated with the pigment carmine.
Language English
First Recorded Use Late 19th to Early 20th Century (as a specific named shade)

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.

Similar Named Colors

Candy Pink #E4717A ΔE 2.33
Brink Pink #FB607F ΔE 5.15
Fuzzy Wuzzy #CC6666 ΔE 5.30
Wild Watermelon #FC6C85 ΔE 5.48

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);
}