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
Deep Violet #330066 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Deep Violet #330066 pairs with #336600 as its complementary color, and #663300 and #006633 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Split-Complementary
Two colors flanking the complement — high contrast with less tension than full complementary.
Shades & Tints
The shade and tint range for Deep Violet #330066 moves from dark #0D001A tones through the base color to lighter #F2E6FF tones, making it useful for depth, hierarchy, and background variation.
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);
}