Carmine Pink

HEX: #EB4C42 | Modern Palette

On White
3.72:1
FAIL
On Black
5.64:1
PASS

Color Specifications

HEX
#EB4C42
RGB
235, 76, 66
HSL
3°, 80% ,59%
CMYK
0, 68, 72, 8

About Carmine Pink

Carmine Pink (#EB4C42) is a color with RGB(235, 76, 66) and HSL(3.6°, 80.9%, 59%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #42E1EB, which creates strong contrast. Its triadic palette includes #42EB4C and #4C42EB. The name comes from carminium (Latin), carmin (French), carmine (English) (Latin (via French and English)).

  • HEX: #EB4C42
  • RGB: 235, 76, 66
  • HSL: 3.6°, 80.9%, 59%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #42E1EB
  • Triadic colors: #42EB4C, #4C42EB
  • The name comes from carminium (Latin), carmin (French), carmine (English) (Latin (via French and 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 #EB4C42 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #939337
Protanopia #6E6E44
Tritanopia #EB4B4B
Achromatopsia #848484

Frequently Asked Questions

Carmine Pink (#EB4C42) is a color with RGB(235, 76, 66) and HSL(3.6°, 80.9%, 59%).

#EB4C42 pairs strongly with #42E1EB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#EB4C42 is commonly associated with Energetic, Bold.

The name Carmine Pink is linked to carminium (Latin), carmin (French), carmine (English) from Latin (via French and English), meaning Crimson or scarlet dye.

Name, History & Etymology

Origin Word carminium (Latin), carmin (French), carmine (English)
Meaning Crimson or scarlet dye
Language Latin (via French and English)
First Recorded Use 16th Century (for 'carmine' as a dye/pigment), 19th Century (for 'carmine pink' as a specific color name)

History

Carmine is a brilliant crimson pigment obtained from cochineal insects (Dactylopius coccus). These insects are native to tropical and subtropical South America and Mexico. Indigenous peoples of the Americas used cochineal for centuries before the arrival of Europeans. When the Spanish conquered the Aztec Empire, they recognized the value of cochineal and began exporting it to Europe in the 16th century. It quickly became one of the most important and expensive red dyes and pigments, used in textiles, painting, and cosmetics. The term 'carmine' itself is thought to derive from the medieval Latin 'carminium', which may have roots in Arabic 'qirmiz' (crimson) and Sanskrit 'krmi-ja' (produced by a worm). 'Carmine Pink' specifically refers to a lighter, more pinkish shade of the traditional deep carmine red, often seen as a vibrant, warm pink with red undertones.

First Recorded Use

The word 'carmine' entered English in the late 16th century to refer to the red pigment. 'Carmine pink' as a specific color descriptor likely emerged as color naming became more nuanced, particularly in fashion and art, during the 19th century.

Cultural Associations

Carmine has been historically associated with luxury and royalty due to its intensity and cost. It was used extensively by Old Masters in painting. In modern culture, 'Carmine Pink' evokes vibrancy, passion, and often a playful yet sophisticated energy. It's a popular color in fashion, cosmetics (especially lipsticks and blushes), and graphic design for its eye-catching quality. It can be seen as a more approachable or youthful version of a true crimson.

Similar Named Colors

Coral Red #FF4040 ΔE 3.22
Vermilion #E34234 ΔE 3.30
Deep Carmine Pink #EF3038 ΔE 3.67
Light Brilliant Red #FE2E2E ΔE 3.99

Code Snippets

/* Background */
.element {
    background-color: #EB4C42;
}

/* Text */
.element {
    color: #EB4C42;
}

/* Border */
.element {
    border: 1px solid #EB4C42;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #EB4C42,
        #42E1EB
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #EB4C42,
        #42E1EB
    );
}

// SCSS variable
$carmine-pink: #EB4C42;

// With RGB channels (useful for rgba() usage)
$carmine-pink-r: 235;
$carmine-pink-g: 76;
$carmine-pink-b: 66;

// Usage
.element {
    background-color: $carmine-pink;
    color: rgba($carmine-pink-r, $carmine-pink-g, $carmine-pink-b, 0.8);
}