Cameo Pink
HEX: #EFBBCC | Modern Palette
Color Specifications
#EFBBCC
239, 187, 204
340°, 21% ,93%
0, 21.76, 14.64, 6.27
About Cameo Pink
Cameo Pink (#EFBBCC) is a color with RGB(239, 187, 204) and HSL(340.38°, 21.76%, 93.73%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BBEFDE, which creates strong contrast. Its triadic palette includes #CCEFBB and #BBCCEF. The name comes from Cameo Pink (English).
- HEX: #EFBBCC
- RGB: 239, 187, 204
- HSL: 340.38°, 21.76%, 93.73%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #BBEFDE
- Triadic colors: #CCEFBB, #BBCCEF
- The name comes from Cameo 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 #EFBBCC from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CCCCCB
#C2C2CC
#EDBDBD
#C9C9C9
Frequently Asked Questions
Name, History & Etymology
History
The term 'cameo' refers to a method of carving, or a piece of jewelry or art created by this method, typically a raised image (positive relief) on a contrasting background. Often, these backgrounds or the material itself would be a pale, delicate color, including various shades of pink, cream, or light blue. The 'pink' in 'Cameo Pink' specifically evokes this soft, often slightly muted, and elegant shade. Its popularity as a color name grew as color standardization became more common, allowing for precise communication of specific hues in industries like fashion, paint, and cosmetics.
First Recorded Use
While the individual words 'cameo' and 'pink' have much older origins, their specific combination to describe this particular shade of pink likely gained traction in the early 20th century, particularly with the rise of standardized color names in fashion, cosmetics, and interior design.
Cultural Associations
Cameo Pink is often associated with femininity, delicacy, romance, and vintage aesthetics. It can evoke a sense of nostalgia and classic elegance. It's frequently seen in bridal wear, lingerie, baby clothing, and interior design aiming for a soft, inviting atmosphere. Its association with cameos also lends it an air of classical artistry and refined taste.
Code Snippets
/* Background */
.element {
background-color: #EFBBCC;
}
/* Text */
.element {
color: #EFBBCC;
}
/* Border */
.element {
border: 1px solid #EFBBCC;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EFBBCC,
#ECF2F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EFBBCC,
#ECF2F0
);
}
// SCSS variable
$cameo-pink: #EFBBCC;
// With RGB channels (useful for rgba() usage)
$cameo-pink-r: 239;
$cameo-pink-g: 187;
$cameo-pink-b: 204;
// Usage
.element {
background-color: $cameo-pink;
color: rgba($cameo-pink-r, $cameo-pink-g, $cameo-pink-b, 0.8);
}