Deep Violet
HEX: #330066 | Modern Palette
Color Specifications
#330066
51, 0, 102
270°, 100% ,40%
50, 100, 0, 60
About Deep Violet
Deep Violet (#330066) is a color with RGB(51, 0, 102) and HSL(270°, 100%, 40%). 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 #336600, which creates strong contrast. Its triadic palette includes #663300 and #006633. The name comes from Deep Violet (English).
- HEX: #330066
- RGB: 51, 0, 102
- HSL: 270°, 100%, 40%
- Mood: Bold, Romantic
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #336600
- Triadic colors: #663300, #006633
- The name comes from Deep 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 #330066 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color violet itself has a long history, associated with royalty, spirituality, and magic, often derived from natural dyes like Tyrian purple (though technically more purple/magenta) or plant-based dyes. As synthetic dyes became prevalent in the 19th century, a wider and more consistent range of violet shades became available and named. 'Deep violet' specifically refers to a darker, more saturated version of this hue, often seen in artistic palettes, fashion trends, and interior design throughout the 20th and 21st centuries. The hexadecimal code #330066 is a modern digital representation of this color.
First Recorded Use
While 'violet' has ancient roots, the specific compound 'deep violet' as a named color likely gained traction with the standardization of color systems and increased interest in precise color descriptions, particularly in art, fashion, and dye industries. Exact first use is difficult to pinpoint but aligns with the period of more nuanced color naming.
Cultural Associations
Deep violet, like other shades of violet and purple, often carries connotations of luxury, sophistication, mystery, and introspection. It can be associated with creativity, wisdom, and spiritual awareness. In some contexts, it might also evoke feelings of melancholy or solemnity. Its depth gives it a more serious or opulent feel compared to lighter violets.
Code Snippets
/* Background */
.element {
background-color: #330066;
}
/* Text */
.element {
color: #330066;
}
/* Border */
.element {
border: 1px solid #330066;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#330066,
#66CC00
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#330066,
#66CC00
);
}
// SCSS variable
$deep-violet: #330066;
// With RGB channels (useful for rgba() usage)
$deep-violet-r: 51;
$deep-violet-g: 0;
$deep-violet-b: 102;
// Usage
.element {
background-color: $deep-violet;
color: rgba($deep-violet-r, $deep-violet-g, $deep-violet-b, 0.8);
}