Dark Violet
HEX: #9400D3 | Modern Palette
Color Specifications
#9400D3
148, 0, 211
282°, 100% ,82%
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
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 #9400D3 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#5353D2
#3232D3
#7E5151
#5D5D5D
Frequently Asked Questions
Name, History & Etymology
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.
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);
}