Orchid

HEX: #DA70D6 | Modern Palette

On White
2.89:1
FAIL
On Black
7.27:1
PASS

Color Specifications

HEX
#DA70D6
RGB
218, 112, 214
HSL
302°, 58% ,64%
CMYK
0, 49, 2, 15

About Orchid

Orchid (#DA70D6) is a color with RGB(218, 112, 214) and HSL(302.3°, 58.9%, 64.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #70DA74, which creates strong contrast. Its triadic palette includes #D6DA70 and #70D6DA. The name comes from ὄρχις (órkhis) (Ancient Greek).

  • HEX: #DA70D6
  • RGB: 218, 112, 214
  • HSL: 302.3°, 58.9%, 64.7%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #70DA74
  • Triadic colors: #D6DA70, #70D6DA
  • The name comes from ὄρχις (órkhis) (Ancient Greek).

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

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #9999D4
Protanopia #8181D6
Tritanopia #D08383
Achromatopsia #989898

Frequently Asked Questions

Orchid (#DA70D6) is a color with RGB(218, 112, 214) and HSL(302.3°, 58.9%, 64.7%).

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

#DA70D6 is suitable for Text, Button, Logo and works well with Warm styles.

#DA70D6 is commonly associated with Romantic.

The name Orchid is linked to ὄρχις (órkhis) from Ancient Greek, meaning testicle.

Name, History & Etymology

Origin Word ὄρχις (órkhis)
Meaning testicle
Language Ancient Greek
First Recorded Use 16th Century

History

The name 'orchid' comes from the Ancient Greek word 'órkhis', meaning 'testicle'. This rather surprising origin refers to the shape of the paired underground tubers of some species of orchids, particularly those in the genus *Orchis*. Theophrastus, a student of Aristotle, first used the term around 371-287 BC. For centuries, orchids were primarily known in Europe for these terrestrial species. However, with the Age of Exploration, new and exotic epiphytic orchids from tropical regions began to arrive, captivating botanists and collectors. The 'orchid craze' of the Victorian era saw immense demand for these plants, leading to extensive exploration, collection, and cultivation. Today, the Orchidaceae family is one of the largest families of flowering plants, with over 28,000 accepted species.

First Recorded Use

The term 'orchid' was first used in English in the mid-16th century, derived from the Latin 'orchis', which itself came from the Ancient Greek 'órkhis'.

Cultural Associations

Orchids hold diverse cultural significance across the globe. In ancient Greece, they were associated with virility and fertility due to their root shape. In China, orchids symbolize integrity, nobility, friendship, and refinement, often appearing in classical art and literature. During the Victorian era in Europe, orchids became symbols of luxury, beauty, and exoticism, with different colors conveying specific messages (e.g., white for purity, pink for grace). They are frequently used in floral arrangements, as houseplants, and in traditional medicine in various cultures. Their unique and often intricate flower structures have made them a subject of fascination for artists and botanists alike.

Similar Named Colors

Deep Mauve #D473D4 ΔE 1.10
Violet #EE82EE ΔE 5.65
Purple Pizzazz #FE4EDA ΔE 6.33
Heliotrope #DF73FF ΔE 6.50

Code Snippets

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

/* Text */
.element {
    color: #DA70D6;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #DA70D6,
        #70DA74
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DA70D6,
        #70DA74
    );
}

// SCSS variable
$orchid: #DA70D6;

// With RGB channels (useful for rgba() usage)
$orchid-r: 218;
$orchid-g: 112;
$orchid-b: 214;

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