Russian Violet
HEX: #32174D | Modern Palette
Color Specifications
#32174D
50, 23, 77
270°, 70% ,30%
35.06, 70.13, 0, 69.8
About Russian Violet
Russian Violet (#32174D) is a color with RGB(50, 23, 77) and HSL(270°, 70.13%, 30.2%). In design, it fits Vivid styles and is suitable for Text, Button, Accent. Its complementary color is #324D17, which creates strong contrast. Its triadic palette includes #4D3217 and #174D32. The name comes from Russian Violet (English).
- HEX: #32174D
- RGB: 50, 23, 77
- HSL: 270°, 70.13%, 30.2%
- Style: Vivid
- Use case: Text, Button, Accent
- Complementary color: #324D17
- Triadic colors: #4D3217, #174D32
- The name comes from Russian 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 #32174D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The naming of colors often reflects cultural associations, geographical origins, or popular trends. 'Russian Violet' likely gained its name due to an association with a particular shade of violet prevalent or popular in Russia, perhaps in textiles, imperial regalia, or specific flora. Violets themselves have a long history of symbolism, often associated with royalty, spirituality, and mourning. The 'Russian' qualifier adds a specific nuance, distinguishing it from other violet shades like 'French Violet' or 'Imperial Violet'. It's a relatively deep, muted violet, which might evoke the somber yet rich tones often found in Russian art or historical garments.
First Recorded Use
The exact first documented use of 'Russian Violet' as a specific color name is difficult to pinpoint precisely, but color naming conventions linking specific places to hues became more common in the late 19th and early 20th centuries with the rise of standardized color charts and commercial dyes. It likely emerged in fashion or art contexts.
Cultural Associations
While not as globally recognized as 'Parisian Blue' or 'Prussian Blue', 'Russian Violet' fits into a pattern of naming colors after places. It might subtly evoke images of Russian Orthodox iconography (where deep purples and violets are common), imperial splendor, or the hardy, deep-colored flowers found in colder climates. It doesn't carry strong negative or positive connotations beyond the general symbolism of violet, which can range from luxury and spirituality to melancholy and introspection.
Code Snippets
/* Background */
.element {
background-color: #32174D;
}
/* Text */
.element {
color: #32174D;
}
/* Border */
.element {
border: 1px solid #32174D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#32174D,
#4D8317
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#32174D,
#4D8317
);
}
// SCSS variable
$russian-violet: #32174D;
// With RGB channels (useful for rgba() usage)
$russian-violet-r: 50;
$russian-violet-g: 23;
$russian-violet-b: 77;
// Usage
.element {
background-color: $russian-violet;
color: rgba($russian-violet-r, $russian-violet-g, $russian-violet-b, 0.8);
}