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
Queen Pink #E8CCD7 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Queen Pink #E8CCD7 pairs with #CCE8DD as its complementary color, and #D7E8CC and #CCD7E8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}