Light Medium Orchid

HEX: #D39BCB | Modern Palette

On White
2.25:1
FAIL
On Black
9.32:1
PASS

Color Specifications

HEX
#D39BCB
RGB
211, 155, 203
HSL
308°, 26% ,82%
CMYK
0, 26.54, 3.79, 17.25

About Light Medium Orchid

Light Medium Orchid (#D39BCB) is a color with RGB(211, 155, 203) and HSL(308.57°, 26.54%, 82.75%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #9BD3A3, which creates strong contrast. Its triadic palette includes #CBD39B and #9BCBD3. The name comes from Light Medium Orchid (English).

  • HEX: #D39BCB
  • RGB: 211, 155, 203
  • HSL: 308.57°, 26.54%, 82.75%
  • Style: Pastel, Warm
  • Use case: Text, Background, Print
  • Complementary color: #9BD3A3
  • Triadic colors: #CBD39B, #9BCBD3
  • The name comes from Light Medium Orchid (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 #D39BCB from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #AEAECA
Protanopia #A2A2CB
Tritanopia #CEA2A2
Achromatopsia #ADADAD

Frequently Asked Questions

Light Medium Orchid (#D39BCB) is a color with RGB(211, 155, 203) and HSL(308.57°, 26.54%, 82.75%).

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

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

The name Light Medium Orchid is linked to Light Medium Orchid from English, meaning A light, moderately saturated pinkish-purple color, reminiscent of certain orchid flower petals..

Name, History & Etymology

Origin Word Light Medium Orchid
Meaning A light, moderately saturated pinkish-purple color, reminiscent of certain orchid flower petals.
Language English
First Recorded Use Late 20th Century

History

The color name 'Orchid' itself has been used in English since at least the late 19th century to describe a pale to moderate pinkish-purple, inspired by the diverse colors of orchid flowers. As color systems became more granular, especially with the development of computer graphics and web standards, modifiers like 'Light', 'Medium', 'Dark', 'Pale', 'Deep', etc., were added to existing color names to specify variations. 'Light Medium Orchid' fits into this trend, providing a specific shade within the broader 'Orchid' family. It's a descriptive name that aims to convey both the hue (orchid) and its lightness/saturation level (light medium).

First Recorded Use

The specific combination 'Light Medium Orchid' as a named color with a precise hex code like #d39bcb likely emerged with the advent of digital color systems and web colors. While 'orchid' as a color name has existed longer, the precise modifiers 'Light Medium' point to a more modern, systematic approach to color naming.

Cultural Associations

Orchids are globally recognized for their beauty and diversity, often symbolizing love, luxury, beauty, and strength. Colors derived from orchids, like 'Light Medium Orchid', tend to evoke feelings of elegance, femininity, and softness. In fashion and interior design, such shades are often used to create serene, romantic, or sophisticated atmospheres. It's a color that can be seen as gentle and approachable.

Similar Named Colors

Pastel Violet #CB99C9 ΔE 1.64
Light Grayish Magenta #CC99CC ΔE 1.81
Plum #DDA0DD ΔE 3.57
Lilac #C8A2C8 ΔE 3.96

Code Snippets

/* Background */
.element {
    background-color: #D39BCB;
}

/* Text */
.element {
    color: #D39BCB;
}

/* Border */
.element {
    border: 1px solid #D39BCB;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #D39BCB,
        #C7DFCB
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #D39BCB,
        #C7DFCB
    );
}

// SCSS variable
$light-medium-orchid: #D39BCB;

// With RGB channels (useful for rgba() usage)
$light-medium-orchid-r: 211;
$light-medium-orchid-g: 155;
$light-medium-orchid-b: 203;

// Usage
.element {
    background-color: $light-medium-orchid;
    color: rgba($light-medium-orchid-r, $light-medium-orchid-g, $light-medium-orchid-b, 0.8);
}