Orchid Pink

HEX: #F2BDCD | Modern Palette

On White
1.62:1
FAIL
On Black
12.94:1
PASS

Color Specifications

HEX
#F2BDCD
RGB
242, 189, 205
HSL
341°, 21% ,94%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #CECECC
Protanopia #C4C4CD
Tritanopia #F0BFBF
Achromatopsia #CBCBCB

Frequently Asked Questions

Orchid Pink (#F2BDCD) is a color with RGB(242, 189, 205) and HSL(341.89°, 21.9%, 94.9%).

#F2BDCD pairs strongly with #BDF2E2 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F2BDCD is suitable for Text, Background, Print and works well with Pastel, Warm styles.

The name Orchid Pink is linked to Orchid Pink from English, meaning A shade of pink resembling the color of certain orchid flowers..

Name, History & Etymology

Origin Word Orchid Pink
Meaning A shade of pink resembling the color of certain orchid flowers.
Language English
First Recorded Use Early 20th Century

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.

Similar Named Colors

Cameo Pink #EFBBCC ΔE 0.69
Bubble Gum #FFC1CC ΔE 3.15
Pink #FFC0CB ΔE 3.24
Cherry Blossom Pink #FFB7C5 ΔE 4.16

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);
}