Queen Pink
HEX: #E8CCD7 | Modern Palette
Color Specifications
#E8CCD7
232, 204, 215
336°, 12% ,90%
0, 12.07, 7.33, 9.02
About Queen Pink
Queen Pink (#E8CCD7) is a color with RGB(232, 204, 215) and HSL(336.43°, 12.07%, 90.98%). It is commonly associated with Minimal moods. In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #CCE8DD, which creates strong contrast. Its triadic palette includes #D7E8CC and #CCD7E8. The name comes from Queen Pink (English).
- HEX: #E8CCD7
- RGB: 232, 204, 215
- HSL: 336.43°, 12.07%, 90.98%
- Mood: Minimal
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #CCE8DD
- Triadic colors: #D7E8CC, #CCD7E8
- The name comes from Queen Pink (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 #E8CCD7 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color pink itself has a complex history, shifting in meaning from a masculine color in the 18th century to a more feminine association in the 20th century. The addition of 'Queen' to a color name typically elevates it, suggesting a premium, elegant, or luxurious quality. This naming convention became popular as brands sought to differentiate their products and evoke specific feelings. 'Queen Pink' would likely have been developed to convey a sophisticated, perhaps slightly muted or dusty, yet distinctly pink hue that feels regal without being overly bright or childish.
First Recorded Use
While the concept of 'queen' and 'pink' have existed for centuries, the specific color name 'Queen Pink' as a defined shade likely emerged with the proliferation of color naming systems in the late 20th century, particularly in fashion, cosmetics, and interior design. It's difficult to pinpoint an exact first use without a specific historical color dictionary or brand launch.
Cultural Associations
In Western cultures, 'Queen Pink' would generally be perceived as elegant, feminine, and perhaps a bit nostalgic or vintage. It might be associated with classic beauty, refined taste, or a gentle form of power. It's less overtly 'girly' than a bright bubblegum pink, and more mature. It could be used in contexts ranging from bridal wear to sophisticated home decor, or in branding for luxury goods aimed at women.
Code Snippets
/* Background */
.element {
background-color: #E8CCD7;
}
/* Text */
.element {
color: #E8CCD7;
}
/* Border */
.element {
border: 1px solid #E8CCD7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E8CCD7,
#E5EBE9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E8CCD7,
#E5EBE9
);
}
// SCSS variable
$queen-pink: #E8CCD7;
// With RGB channels (useful for rgba() usage)
$queen-pink-r: 232;
$queen-pink-g: 204;
$queen-pink-b: 215;
// Usage
.element {
background-color: $queen-pink;
color: rgba($queen-pink-r, $queen-pink-g, $queen-pink-b, 0.8);
}