Orchid Pink
HEX: #F2BDCD | Modern Palette
Color Specifications
#F2BDCD
242, 189, 205
341°, 21% ,94%
0, 21.9, 15.29, 5.1
About Orchid Pink
Orchid Pink (#F2BDCD) is a color with RGB(242, 189, 205) and HSL(341.89°, 21.9%, 94.9%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #BDF2E2, which creates strong contrast. Its triadic palette includes #CDF2BD and #BDCDF2. The name comes from Orchid Pink (English).
- HEX: #F2BDCD
- RGB: 242, 189, 205
- HSL: 341.89°, 21.9%, 94.9%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #BDF2E2
- Triadic colors: #CDF2BD, #BDCDF2
- The name comes from Orchid 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 #F2BDCD from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#CECECC
#C4C4CD
#F0BFBF
#CBCBCB
Frequently Asked Questions
Name, History & Etymology
History
The color 'pink' itself has a long history, derived from the flower 'pink' (Dianthus). The addition of 'orchid' to specify a particular shade reflects the increasing desire for more nuanced color descriptions. Orchids, known for their diverse and often vibrant colors, provided a natural descriptor for a delicate, often purplish-pink hue. Its popularity in fashion and interior design has ebbed and flowed, often associated with femininity, spring, and a certain elegance.
First Recorded Use
The term 'orchid pink' as a specific color name likely gained traction in the early 20th century, particularly with the rise of standardized color charts and fashion terminology. While orchids have been known for centuries, the precise naming of a color 'orchid pink' points to a more modern classification.
Cultural Associations
Orchid Pink is often associated with femininity, grace, and delicacy. It can evoke feelings of romance, sweetness, and youth. In some contexts, it might be seen as sophisticated due to the association with exotic orchid flowers. It's a popular color for spring collections, bridal wear, and children's items. It's generally perceived as a soft and pleasing color.
Code Snippets
/* Background */
.element {
background-color: #F2BDCD;
}
/* Text */
.element {
color: #F2BDCD;
}
/* Border */
.element {
border: 1px solid #F2BDCD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F2BDCD,
#EFF5F3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F2BDCD,
#EFF5F3
);
}
// SCSS variable
$orchid-pink: #F2BDCD;
// With RGB channels (useful for rgba() usage)
$orchid-pink-r: 242;
$orchid-pink-g: 189;
$orchid-pink-b: 205;
// Usage
.element {
background-color: $orchid-pink;
color: rgba($orchid-pink-r, $orchid-pink-g, $orchid-pink-b, 0.8);
}