Wild Orchid

HEX: #D470A2 | Modern Palette

On White
3.16:1
FAIL
On Black
6.64:1
PASS

Color Specifications

HEX
#D470A2
RGB
212, 112, 162
HSL
330°, 47% ,83%
CMYK
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

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

Color Characteristics

Mood
Style
Warm

Accessibility Simulation

Deuteranopia #9696A0
Protanopia #8080A2
Tritanopia #D07878
Achromatopsia #919191

Frequently Asked Questions

Wild Orchid (#D470A2) is a color with RGB(212, 112, 162) and HSL(330°, 47.17%, 83.14%).

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

#D470A2 is suitable for Text, Button, Background and works well with Warm styles.

The name Wild Orchid is linked to Wild Orchid from English, meaning A type of orchid that grows naturally in the wild, not cultivated..

Name, History & Etymology

Origin Word Wild Orchid
Meaning A type of orchid that grows naturally in the wild, not cultivated.
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

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.

Similar Named Colors

Thulian Pink #DE6FA1 ΔE 2.05
Super Pink #CF6BA9 ΔE 3.19
Sky Magenta #CF71AF ΔE 3.68
Pale Red Violet #DB7093 ΔE 4.86

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