Pink Pearl

HEX: #E7ACCF | Modern Palette

On White
1.88:1
FAIL
On Black
11.20:1
PASS

Color Specifications

HEX
#E7ACCF
RGB
231, 172, 207
HSL
324°, 55% ,79%
CMYK
0, 26, 10, 9

About Pink Pearl

Pink Pearl (#E7ACCF) is a color with RGB(231, 172, 207) and HSL(324.4°, 55.1%, 79%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Print. Its complementary color is #ACE7C4, which creates strong contrast. Its triadic palette includes #CFE7AC and #ACCFE7. The name comes from Pink Pearl (English).

  • HEX: #E7ACCF
  • RGB: 231, 172, 207
  • HSL: 324.4°, 55.1%, 79%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Print
  • Complementary color: #ACE7C4
  • Triadic colors: #CFE7AC, #ACCFE7
  • The name comes from Pink Pearl (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 #E7ACCF from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Print

Accessibility Simulation

Deuteranopia #C0C0CE
Protanopia #B4B4CF
Tritanopia #E3B1B1
Achromatopsia #BDBDBD

Frequently Asked Questions

Pink Pearl (#E7ACCF) is a color with RGB(231, 172, 207) and HSL(324.4°, 55.1%, 79%).

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

#E7ACCF is suitable for Text, Button, Print and works well with Warm styles.

#E7ACCF is commonly associated with Romantic.

The name Pink Pearl is linked to Pink Pearl from English, meaning A pearl with a pink hue..

Name, History & Etymology

Origin Word Pink Pearl
Meaning A pearl with a pink hue.
Language English
First Recorded Use Early 20th Century

History

The term 'pearl' for a color refers to the iridescent, lustrous appearance of natural pearls. 'Pink' describes the specific hue. Pink pearls are naturally occurring, though rare, and highly prized. The color 'Pink Pearl' as a named shade gained popularity in various industries. In cosmetics, it's a common shade for lipsticks, blushes, and nail polishes, evoking femininity and elegance. In art supplies, it's a specific pigment or crayon color. The hexadecimal code #e7accf is a light, desaturated pink, reflecting the soft, subtle pink often found in natural pearls.

First Recorded Use

The specific color name 'Pink Pearl' likely emerged with the standardization of color naming in cosmetics, fashion, and art supplies, particularly in the early to mid-20th century. The concept of pink pearls, however, has existed for much longer.

Cultural Associations

Pink is widely associated with femininity, tenderness, romance, and sweetness in Western cultures. Pearls symbolize purity, wisdom, and wealth. The combination 'Pink Pearl' therefore carries connotations of delicate beauty, sophistication, and preciousness. It's often used in products marketed towards women and in contexts aiming for a soft, luxurious aesthetic. It can also evoke vintage charm, given the historical appreciation for pearls.

Similar Named Colors

Light Orchid #E6A8D7 ΔE 3.18
Kobi #E79FC4 ΔE 3.47
Lavender Pink #FBAED2 ΔE 3.80
Light Hot Pink #FFB3DE ΔE 4.31

Code Snippets

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

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

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

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

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

// SCSS variable
$pink-pearl: #E7ACCF;

// With RGB channels (useful for rgba() usage)
$pink-pearl-r: 231;
$pink-pearl-g: 172;
$pink-pearl-b: 207;

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