Pink Pearl
HEX: #E7ACCF | Modern Palette
Color Specifications
#E7ACCF
231, 172, 207
324°, 55% ,79%
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
Color Palettes
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}