Dark Violet

HEX: #9400D3 | Modern Palette

On White
6.56:1
PASS
On Black
3.20:1
FAIL

Color Specifications

HEX
#9400D3
RGB
148, 0, 211
HSL
282°, 100% ,82%
CMYK
29.86, 100, 0, 17.25

About Dark Violet

Dark Violet (#9400D3) is a color with RGB(148, 0, 211) and HSL(282.09°, 100%, 82.75%). It is commonly associated with Playful moods. In design, it fits Neon styles and is suitable for Text, Button, Background. Its complementary color is #3FD300, which creates strong contrast. Its triadic palette includes #D39400 and #00D394. The name comes from Dark Violet (English).

  • HEX: #9400D3
  • RGB: 148, 0, 211
  • HSL: 282.09°, 100%, 82.75%
  • Mood: Playful
  • Style: Neon
  • Use case: Text, Button, Background
  • Complementary color: #3FD300
  • Triadic colors: #D39400, #00D394
  • The name comes from Dark Violet (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 #9400D3 from deepest shade to lightest tint.

Color Characteristics

Mood
Playful
Style
Neon

Accessibility Simulation

Deuteranopia #5353D2
Protanopia #3232D3
Tritanopia #7E5151
Achromatopsia #5D5D5D

Frequently Asked Questions

Dark Violet (#9400D3) is a color with RGB(148, 0, 211) and HSL(282.09°, 100%, 82.75%).

#9400D3 pairs strongly with #3FD300 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#9400D3 is suitable for Text, Button, Background and works well with Neon styles.

#9400D3 is commonly associated with Playful.

The name Dark Violet is linked to Dark Violet from English, meaning A deep shade of violet, a color intermediate between blue and red..

Name, History & Etymology

Origin Word Dark Violet
Meaning A deep shade of violet, a color intermediate between blue and red.
Language English
First Recorded Use Late 19th - Early 20th Century (as a specific color name)

History

Violet itself is one of the colors of the rainbow, historically associated with royalty, spirituality, and magic due to its rarity in natural dyes and its position at the end of the visible spectrum. 'Dark violet' specifically emphasizes a deeper, richer, and often more serious or luxurious aspect of the color. In art and fashion, darker shades of violet gained prominence as more stable and varied synthetic dyes became available, allowing for a wider range of precise color formulations. The hex code #9400d3 is a specific digital interpretation of 'dark violet'.

First Recorded Use

While 'violet' as a color has ancient roots, the specific compound 'dark violet' as a named color likely emerged with the standardization of color terminology and the advent of synthetic dyes, becoming more common in the late 19th and early 20th centuries. Earlier references would simply describe a 'deep violet' or 'dark purple'. The hex code #9400d3 is a modern digital representation.

Cultural Associations

Dark violet often conveys a sense of luxury, sophistication, mystery, and depth. It can be associated with royalty (like purple), but with a more subdued and mature feel. In some contexts, it might evoke feelings of introspection, spirituality, or even melancholy. It's less playful than lighter violets and more commanding. It's a popular color in evening wear, interior design for opulent spaces, and branding for high-end or mystical products.

Similar Named Colors

French Violet #8806CE ΔE 2.07
Purple (Munsell) #9F00C5 ΔE 2.96
Blue Violet #8A2BE2 ΔE 4.04
Dark Orchid #9932CC ΔE 4.44

Code Snippets

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

/* Text */
.element {
    color: #9400D3;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #9400D3,
        #C1FFA7
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #9400D3,
        #C1FFA7
    );
}

// SCSS variable
$dark-violet: #9400D3;

// With RGB channels (useful for rgba() usage)
$dark-violet-r: 148;
$dark-violet-g: 0;
$dark-violet-b: 211;

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