Dark Orchid
HEX: #9932CC | Modern Palette
Color Specifications
#9932CC
153, 50, 204
280°, 75% ,80%
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
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 #9932CC from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#5F5FCB
#4747CC
#875B5B
#666666
Frequently Asked Questions
Name, History & Etymology
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.
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);
}