Orchid
HEX: #DA70D6 | Modern Palette
Color Specifications
#DA70D6
218, 112, 214
302°, 58% ,64%
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
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 #DA70D6 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}