Heliotrope
HEX: #DF73FF | Modern Palette
Color Specifications
#DF73FF
223, 115, 255
286°, 100% ,72%
13, 55, 0, 0
About Heliotrope
Heliotrope (#DF73FF) is a color with RGB(223, 115, 255) and HSL(286.3°, 100%, 72.5%). It is commonly associated with Bold, Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Accent. Its complementary color is #93FF73, which creates strong contrast. Its triadic palette includes #FFDF73 and #73FFDF. The name comes from ἡλιοτρόπιον (heliotrópion) (Ancient Greek).
- HEX: #DF73FF
- RGB: 223, 115, 255
- HSL: 286.3°, 100%, 72.5%
- Mood: Bold, Playful
- Style: Neon
- Use case: Text, Button, Accent
- Complementary color: #93FF73
- Triadic colors: #FFDF73, #73FFDF
- The name comes from ἡλιοτρόπιον (heliotrópion) (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 #DF73FF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'heliotrope' is a compound of two Greek words: 'helios' (ἥλιος), meaning 'sun', and 'tropos' (τρόπος), meaning 'turn'. This refers to the characteristic of some heliotrope plants to turn their leaves or flowers towards the sun. Historically, the plant was known for its medicinal properties and its fragrant flowers. As a color, 'heliotrope' gained popularity in fashion and art during the Victorian era, often described as a rich, deep purple with reddish undertones, or a reddish-purple. The specific shade #df73ff is a lighter, more vibrant purplish-pink, reflecting a modern interpretation of the color, perhaps inspired by the lighter varieties of the flower or a more stylized representation.
First Recorded Use
The term 'heliotrope' for the plant dates back to ancient Greek writers like Theophrastus and Pliny the Elder. Its use as a color name, specifically for a purplish-pink shade, became more common in the late 18th and early 19th centuries, often associated with the color of the heliotrope flower (Heliotropium arborescens).
Cultural Associations
In the language of flowers, heliotrope often symbolizes devotion, eternal love, or intoxication (due to its strong fragrance). Its association with the sun has also linked it to themes of light, warmth, and life. The color heliotrope, particularly in its deeper purple forms, can evoke feelings of luxury, royalty, and mystery, similar to other purples. The lighter, pinker shade #df73ff might also carry connotations of femininity, charm, and playfulness.
Code Snippets
/* Background */
.element {
background-color: #DF73FF;
}
/* Text */
.element {
color: #DF73FF;
}
/* Border */
.element {
border: 1px solid #DF73FF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#DF73FF,
#93FF73
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#DF73FF,
#93FF73
);
}
// SCSS variable
$heliotrope: #DF73FF;
// With RGB channels (useful for rgba() usage)
$heliotrope-r: 223;
$heliotrope-g: 115;
$heliotrope-b: 255;
// Usage
.element {
background-color: $heliotrope;
color: rgba($heliotrope-r, $heliotrope-g, $heliotrope-b, 0.8);
}