Light Medium Orchid
HEX: #D39BCB | Modern Palette
Color Specifications
#D39BCB
211, 155, 203
308°, 26% ,82%
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
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 #D39BCB from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#AEAECA
#A2A2CB
#CEA2A2
#ADADAD
Frequently Asked Questions
Name, History & Etymology
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.
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);
}