Light Orchid
HEX: #E6A8D7 | Modern Palette
Color Specifications
#E6A8D7
230, 168, 215
314°, 26% ,90%
0, 26.96, 6.52, 9.8
About Light Orchid
Light Orchid (#E6A8D7) is a color with RGB(230, 168, 215) and HSL(314.52°, 26.96%, 90.2%). In design, it fits Pastel, Warm styles and is suitable for Text, Background, Print. Its complementary color is #A8E6B7, which creates strong contrast. Its triadic palette includes #D7E6A8 and #A8D7E6. The name comes from Light Orchid (English).
- HEX: #E6A8D7
- RGB: 230, 168, 215
- HSL: 314.52°, 26.96%, 90.2%
- Style: Pastel, Warm
- Use case: Text, Background, Print
- Complementary color: #A8E6B7
- Triadic colors: #D7E6A8, #A8D7E6
- The name comes from Light 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 #E6A8D7 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#BDBDD6
#B0B0D7
#E1AFAF
#BBBBBB
Frequently Asked Questions
Name, History & Etymology
History
The color 'orchid' was first recorded as a color name in English in 1915. It is named after the delicate and varied colors of the orchid flower. As color naming became more granular, especially with the rise of paint companies, fashion industries, and later digital color standards (like X11 color names, web colors), modifiers like 'light' were added to existing color names to denote variations in saturation and brightness. 'Light Orchid' specifically refers to a paler, less saturated version of the original orchid color.
First Recorded Use
While 'orchid' as a color dates back to the 19th century, the specific modifier 'light' to create 'Light Orchid' as a distinct, recognized color name likely gained traction with the advent of digital color systems and expanded commercial color palettes in the latter half of the 20th century. Exact first use is difficult to pinpoint but aligns with the proliferation of more nuanced color descriptors.
Cultural Associations
Orchid colors, including 'Light Orchid', are often associated with femininity, grace, luxury, and exoticism, mirroring the qualities attributed to the orchid flower itself. In fashion and interior design, 'Light Orchid' can evoke a sense of softness, romance, and sophistication. It's a color that can be seen as whimsical yet elegant, often used in spring collections or for creating serene environments.
Code Snippets
/* Background */
.element {
background-color: #E6A8D7;
}
/* Text */
.element {
color: #E6A8D7;
}
/* Border */
.element {
border: 1px solid #E6A8D7;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E6A8D7,
#DFEDE3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E6A8D7,
#DFEDE3
);
}
// SCSS variable
$light-orchid: #E6A8D7;
// With RGB channels (useful for rgba() usage)
$light-orchid-r: 230;
$light-orchid-g: 168;
$light-orchid-b: 215;
// Usage
.element {
background-color: $light-orchid;
color: rgba($light-orchid-r, $light-orchid-g, $light-orchid-b, 0.8);
}