Dark Orchid

HEX: #9932CC | Modern Palette

On White
5.70:1
PASS
On Black
3.68:1
FAIL

Color Specifications

HEX
#9932CC
RGB
153, 50, 204
HSL
280°, 75% ,80%
CMYK
25, 75.49, 0, 20

About Dark Orchid

Dark Orchid (#9932CC) is a color with RGB(153, 50, 204) and HSL(280.13°, 75.49%, 80%). It is commonly associated with Playful, Romantic moods. In design, it is suitable for Text, Button, Background. Its complementary color is #65CC32, which creates strong contrast. Its triadic palette includes #CC9932 and #32CC99. The name comes from Dark Orchid (English).

  • HEX: #9932CC
  • RGB: 153, 50, 204
  • HSL: 280.13°, 75.49%, 80%
  • Mood: Playful, Romantic
  • Use case: Text, Button, Background
  • Complementary color: #65CC32
  • Triadic colors: #CC9932, #32CC99
  • The name comes from Dark 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 #9932CC from deepest shade to lightest tint.

Color Characteristics

Style

Accessibility Simulation

Deuteranopia #5F5FCB
Protanopia #4747CC
Tritanopia #875B5B
Achromatopsia #666666

Frequently Asked Questions

Dark Orchid (#9932CC) is a color with RGB(153, 50, 204) and HSL(280.13°, 75.49%, 80%).

#9932CC pairs strongly with #65CC32 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9932CC is suitable for Text, Button, Background.

#9932CC is commonly associated with Playful, Romantic.

The name Dark Orchid is linked to Dark Orchid from English, meaning A descriptive name for a color that is a darker shade of the color orchid, which itself is named after the flower..

Name, History & Etymology

Origin Word Dark Orchid
Meaning A descriptive name for a color that is a darker shade of the color orchid, which itself is named after the flower.
Language English
First Recorded Use Late 19th - Early 20th Century (as a named color shade)

History

The color 'orchid' itself is derived from the name of the orchid flower, known for its vibrant and diverse range of colors, often including purples and pinks. The specific shade 'Dark Orchid' is a darker, richer purple, often with a hint of pink or magenta. Its formal recognition and use as a distinct color name would have become more prevalent with the development of color charts, such as those used in fashion, interior design, and later, digital color systems (e.g., X11 color names, web colors). It provides a more specific descriptor than simply 'dark purple'.

First Recorded Use

While 'orchid' as a color name appeared in the late 19th century (around 1890s), specific named variations like 'Dark Orchid' would have followed as color palettes expanded and became more standardized, likely in the early to mid-20th century with the advent of color systems and commercial dyes.

Cultural Associations

Orchid flowers are often associated with beauty, luxury, love, and strength. Darker shades of purple, in general, can evoke feelings of sophistication, royalty, and mystery. 'Dark Orchid' combines these associations, suggesting a deep, elegant, and somewhat exotic hue. It's a popular color in fashion, cosmetics, and home decor for adding a touch of richness and femininity.

Similar Named Colors

Purple (Munsell) #9F00C5 ΔE 4.04
Blue Violet #8A2BE2 ΔE 4.40
Dark Violet #9400D3 ΔE 4.44
Veronica #A020F0 ΔE 4.67

Code Snippets

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

/* Text */
.element {
    color: #9932CC;
}

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9932CC,
        #BFF2A6
    );
}

// SCSS variable
$dark-orchid: #9932CC;

// With RGB channels (useful for rgba() usage)
$dark-orchid-r: 153;
$dark-orchid-g: 50;
$dark-orchid-b: 204;

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