Light Orchid

HEX: #E6A8D7 | Modern Palette

On White
1.92:1
FAIL
On Black
10.95:1
PASS

Color Specifications

HEX
#E6A8D7
RGB
230, 168, 215
HSL
314°, 26% ,90%
CMYK
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

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 #E6A8D7 from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Warm
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #BDBDD6
Protanopia #B0B0D7
Tritanopia #E1AFAF
Achromatopsia #BBBBBB

Frequently Asked Questions

Light Orchid (#E6A8D7) is a color with RGB(230, 168, 215) and HSL(314.52°, 26.96%, 90.2%).

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

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

The name Light Orchid is linked to Light Orchid from English, meaning A pale shade of the color orchid, which itself is named after the orchid flower..

Name, History & Etymology

Origin Word Light Orchid
Meaning A pale shade of the color orchid, which itself is named after the orchid flower.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Pink Pearl #E7ACCF ΔE 3.18
Plum #DDA0DD ΔE 4.10
Light Medium Orchid #D39BCB ΔE 4.16
Kobi #E79FC4 ΔE 4.43

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