Heliotrope

HEX: #DF73FF | Modern Palette

On White
2.61:1
FAIL
On Black
8.03:1
PASS

Color Specifications

HEX
#DF73FF
RGB
223, 115, 255
HSL
286°, 100% ,72%
CMYK
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

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

Color Characteristics

Mood
Bold Playful
Style
Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9D9DFE
Protanopia #8585FF
Tritanopia #D08F8F
Achromatopsia #A0A0A0

Frequently Asked Questions

Heliotrope (#DF73FF) is a color with RGB(223, 115, 255) and HSL(286.3°, 100%, 72.5%).

#DF73FF pairs strongly with #93FF73 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DF73FF is suitable for Text, Button, Accent and works well with Neon styles.

#DF73FF is commonly associated with Bold, Playful.

The name Heliotrope is linked to ἡλιοτρόπιον (heliotrópion) from Ancient Greek, meaning turning to the sun.

Name, History & Etymology

Origin Word ἡλιοτρόπιον (heliotrópion)
Meaning turning to the sun
Language Ancient Greek
First Recorded Use Antiquity (for the plant), 18th Century (for the color)

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.

Similar Named Colors

Pink Flamingo #FC74FD ΔE 5.11
Ultra Pink #FF6FFF ΔE 5.23
Fuchsia Pink #FF77FF ΔE 5.67
Violet #EE82EE ΔE 5.95

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