Pink (Pantone)

HEX: #D74894 | Modern Palette

On White
4.00:1
FAIL
On Black
5.24:1
PASS

Color Specifications

HEX
#D74894
RGB
215, 72, 148
HSL
328°, 66% ,84%
CMYK
0, 66.51, 31.16, 15.69

About Pink (Pantone)

Pink (Pantone) (#D74894) is a color with RGB(215, 72, 148) and HSL(328.11°, 66.51%, 84.31%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #48D78B, which creates strong contrast. Its triadic palette includes #94D748 and #4894D7. The name comes from Pink (English).

  • HEX: #D74894
  • RGB: 215, 72, 148
  • HSL: 328.11°, 66.51%, 84.31%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #48D78B
  • Triadic colors: #94D748, #4894D7
  • The name comes from 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 #D74894 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #878791
Protanopia #666695
Tritanopia #D35656
Achromatopsia #7F7F7F

Frequently Asked Questions

Pink (Pantone) (#D74894) is a color with RGB(215, 72, 148) and HSL(328.11°, 66.51%, 84.31%).

#D74894 pairs strongly with #48D78B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#D74894 is suitable for Text, Button, Background and works well with Warm styles.

#D74894 is commonly associated with Playful.

The name Pink (Pantone) is linked to Pink from English, meaning A pale red color, intermediate between red and white..

Name, History & Etymology

Origin Word Pink
Meaning A pale red color, intermediate between red and white.
Language English
First Recorded Use Late 17th Century

History

The word 'pink' itself comes from the Dutch 'pinck oogen' (small eyes) or 'pinck' (small), referring to the small perforations or 'pinked' edges of certain flowers, particularly the dianthus (carnation) family, which are often pink. The color became associated with these flowers. Historically, pink was not always gendered. In the 18th century, it was a fashionable color for both men and women, often seen as a lighter, more playful version of red, which was associated with military uniforms and power. The modern association of pink with femininity largely emerged in the mid-20th century, particularly after World War II, influenced by marketing and fashion trends. Prior to this, blue was often associated with girls and pink with boys (as a 'stronger' color related to red). Pantone's specific shade 'Pink (Pantone)' (#d74894) is a vibrant, medium-dark pink. Pantone, founded in 1963, standardized color matching systems, allowing for consistent reproduction of specific shades across various industries. This particular shade would be part of their extensive color library, used in graphic design, fashion, product design, and more.

First Recorded Use

The use of 'pink' as a color name in English dates back to the late 17th century. Before this, the color was often referred to as 'light red' or by names of flowers that exhibited the color.

Cultural Associations

Pink carries a wide range of cultural associations globally. In Western cultures, it is strongly linked to femininity, romance, sweetness, and childhood (especially for girls). It is also used in campaigns for breast cancer awareness. However, these associations are not universal. In some cultures, pink may have different meanings or less gendered connotations. For example, in Japan, pink is often associated with spring and the transient beauty of cherry blossoms (sakura). In India, it can be seen in traditional clothing and art without strong gendered ties. More recently, there has been a movement to reclaim pink as a gender-neutral or even masculine color, challenging traditional stereotypes.

Similar Named Colors

Raspberry Pink #E25098 ΔE 3.10
Mulberry #C54B8C ΔE 3.40
Deep Cerise #DA3287 ΔE 3.60
Smitten #C84186 ΔE 4.11

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D74894,
        #BCF2D5
    );
}

// SCSS variable
$pink-(pantone): #D74894;

// With RGB channels (useful for rgba() usage)
$pink-(pantone)-r: 215;
$pink-(pantone)-g: 72;
$pink-(pantone)-b: 148;

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