Wild Orchid
HEX: #D470A2 | Modern Palette
Color Specifications
#D470A2
212, 112, 162
330°, 47% ,83%
0, 47.17, 23.58, 16.86
About Wild Orchid
Wild Orchid (#D470A2) is a color with RGB(212, 112, 162) and HSL(330°, 47.17%, 83.14%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #70D4A2, which creates strong contrast. Its triadic palette includes #A2D470 and #70A2D4. The name comes from Wild Orchid (English).
- HEX: #D470A2
- RGB: 212, 112, 162
- HSL: 330°, 47.17%, 83.14%
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #70D4A2
- Triadic colors: #A2D470, #70A2D4
- The name comes from Wild Orchid (English).
Live Components
Color Palettes
Wild Orchid #D470A2 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Wild Orchid #D470A2 pairs with #70D4A2 as its complementary color, and #A2D470 and #70A2D4 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#9696A0
#8080A2
#D07878
#919191
Frequently Asked Questions
Name, History & Etymology
History
The color 'Wild Orchid' (#d470a2) is a vibrant, medium-light shade of magenta-pink. Its name evokes the natural beauty and often striking colors found in wild orchid species. The general color 'orchid' gained popularity in fashion and design during the Art Nouveau period, known for its organic forms and nature-inspired palettes. 'Wild Orchid' specifically suggests a less cultivated, more naturalistic interpretation of the orchid color, often leaning towards a slightly more muted or earthy pink-purple than some of the brighter 'orchid' shades. It has been used in various contexts, from fashion and interior design to cosmetics, for its feminine, exotic, and somewhat romantic connotations.
First Recorded Use
The term 'orchid' as a color name emerged around the late 19th century, inspired by the diverse and often vibrant hues of orchid flowers. 'Wild Orchid' as a more specific color descriptor, implying a particular shade of purple-pink, likely followed shortly after or in the early 20th century as color naming became more nuanced.
Cultural Associations
Orchids themselves hold significant cultural symbolism across many societies, often representing love, beauty, luxury, strength, and exoticism. The 'wild' aspect of the color name might suggest a more untamed, natural, or perhaps even mysterious beauty compared to cultivated varieties. In Western cultures, pinks and purples are often associated with femininity, romance, and creativity. 'Wild Orchid' can be seen as a sophisticated and slightly adventurous take on these traditional associations.
Code Snippets
/* Background */
.element {
background-color: #D470A2;
}
/* Text */
.element {
color: #D470A2;
}
/* Border */
.element {
border: 1px solid #D470A2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D470A2,
#C0E8D4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D470A2,
#C0E8D4
);
}
// SCSS variable
$wild-orchid: #D470A2;
// With RGB channels (useful for rgba() usage)
$wild-orchid-r: 212;
$wild-orchid-g: 112;
$wild-orchid-b: 162;
// Usage
.element {
background-color: $wild-orchid;
color: rgba($wild-orchid-r, $wild-orchid-g, $wild-orchid-b, 0.8);
}