Psychedelic Purple

HEX: #DF00FF | Modern Palette

On White
3.76:1
FAIL
On Black
5.58:1
PASS

Color Specifications

HEX
#DF00FF
RGB
223, 0, 255
HSL
292°, 100% ,50%
CMYK
13, 100, 0, 0

About Psychedelic Purple

Psychedelic Purple (#DF00FF) is a color with RGB(223, 0, 255) and HSL(292.5°, 100%, 50%). It is commonly associated with Bold, Romantic moods. In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #20FF00, which creates strong contrast. Its triadic palette includes Golden Yellow (#FFDF00) and #00FFDF. The name comes from Psychedelic Purple (English).

  • HEX: #DF00FF
  • RGB: 223, 0, 255
  • HSL: 292.5°, 100%, 50%
  • Mood: Bold, Romantic
  • Style: Vivid
  • Use case: Text, Button, Accent
  • Complementary color: #20FF00
  • Triadic colors: Golden Yellow (#FFDF00), #00FFDF
  • The name comes from Psychedelic Purple (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 #DF00FF from deepest shade to lightest tint.

Color Characteristics

Mood
Bold Romantic
Style
Vivid
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #8080FD
Protanopia #5050FF
Tritanopia #CC6464
Achromatopsia #848484

Frequently Asked Questions

Psychedelic Purple (#DF00FF) is a color with RGB(223, 0, 255) and HSL(292.5°, 100%, 50%).

#DF00FF pairs strongly with #20FF00 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#DF00FF is suitable for Text, Button, Accent and works well with Vivid styles.

#DF00FF is commonly associated with Bold, Romantic.

The name Psychedelic Purple is linked to Psychedelic Purple from English, meaning A vivid, intense shade of purple reminiscent of colors and patterns associated with psychedelic art and experiences..

Name, History & Etymology

Origin Word Psychedelic Purple
Meaning A vivid, intense shade of purple reminiscent of colors and patterns associated with psychedelic art and experiences.
Language English
First Recorded Use Mid-20th Century

History

The word 'psychedelic' was coined by Humphry Osmond, a British psychiatrist, from Greek words meaning 'mind-manifesting.' It initially referred to hallucinogenic drugs but quickly expanded to describe the art, music, and fashion inspired by or associated with these experiences. The 1960s saw an explosion of psychedelic art characterized by vibrant, clashing colors, swirling patterns, and optical illusions. Purple, often associated with royalty, mystery, and spirituality, took on a new, electrifying dimension in this context. 'Psychedelic Purple' specifically refers to a highly saturated, often neon-like or electric purple that evokes the visual intensity and altered perceptions linked to the psychedelic era. It became a staple in concert posters for bands like Jimi Hendrix and The Grateful Dead, album art, and fashion of the time.

First Recorded Use

The term 'psychedelic' was coined in 1957. The application of 'psychedelic' to colors and art styles became prominent in the 1960s, particularly in relation to counter-culture movements, music, and drug culture. 'Psychedelic Purple' as a specific named color likely emerged during this period or shortly after, as a descriptive term for the vibrant, often glowing or shifting purples seen in posters, light shows, and fashion.

Cultural Associations

Strongly associated with the 1960s counter-culture, hippie movement, and psychedelic rock music. Evokes feelings of vibrancy, rebellion, altered states, and artistic freedom. Often used in conjunction with other bright, contrasting colors like neon green, orange, and pink to create a 'trippy' effect. Can be seen in modern contexts to evoke nostalgia for the 60s or to represent a bold, unconventional aesthetic. The specific hex code #df00ff is a very bright, almost magenta-leaning purple, fitting the 'electric' or 'neon' aspect often implied by 'psychedelic'.

Similar Named Colors

Vivid Orchid #CC00FF ΔE 3.58
Magenta #FF00FF ΔE 5.88
Electric Purple #BF00FF ΔE 6.03
Steel Pink #CC33CC ΔE 6.87

Code Snippets

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

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

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #DF00FF,
        #20FF00
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #DF00FF,
        #20FF00
    );
}

// SCSS variable
$psychedelic-purple: #DF00FF;

// With RGB channels (useful for rgba() usage)
$psychedelic-purple-r: 223;
$psychedelic-purple-g: 0;
$psychedelic-purple-b: 255;

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