Palatinate Purple
HEX: #682860 | Modern Palette
Color Specifications
#682860
104, 40, 96
307°, 61% ,40%
0, 61.54, 7.69, 59.22
About Palatinate Purple
Palatinate Purple (#682860) is a color with RGB(104, 40, 96) and HSL(307.5°, 61.54%, 40.78%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #286830, which creates strong contrast. Its triadic palette includes #606828 and #286068. The name comes from Palatinate Purple (English).
- HEX: #682860
- RGB: 104, 40, 96
- HSL: 307.5°, 61.54%, 40.78%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #286830
- Triadic colors: #606828, #286068
- The name comes from Palatinate Purple (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 #682860 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The 'Palatinate' refers to a historical region of Germany, specifically the Electoral Palatinate (Kurpfalz), which was a significant principality of the Holy Roman Empire. The rulers of the Palatinate, the Electors Palatine, had their own heraldry and regalia. While purple has long been a color of royalty and high status, the specific designation 'Palatinate Purple' suggests a particular shade that may have been used in their coats of arms, liveries, or academic dress associated with institutions in the region (like Heidelberg University). It's a relatively modern descriptive term for a color, rather than an ancient, formally defined color name. The hex code #682860 is a modern digital representation of this specific shade.
First Recorded Use
Specific first use date is difficult to pinpoint without historical color sample records. The term likely emerged as a descriptive name for a specific shade of purple, possibly in relation to heraldry, academic regalia, or textile dyeing.
Cultural Associations
Purple, in general, has a rich cultural history, often associated with royalty, wealth, power, and spirituality due to the historical rarity and cost of purple dyes (like Tyrian purple). 'Palatinate Purple' specifically links this general symbolism to a particular historical German region and its ruling house. It might be found in academic contexts, heraldry, or historical reenactment related to the Palatinate.
Code Snippets
/* Background */
.element {
background-color: #682860;
}
/* Text */
.element {
color: #682860;
}
/* Border */
.element {
border: 1px solid #682860;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#682860,
#28A838
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#682860,
#28A838
);
}
// SCSS variable
$palatinate-purple: #682860;
// With RGB channels (useful for rgba() usage)
$palatinate-purple-r: 104;
$palatinate-purple-g: 40;
$palatinate-purple-b: 96;
// Usage
.element {
background-color: $palatinate-purple;
color: rgba($palatinate-purple-r, $palatinate-purple-g, $palatinate-purple-b, 0.8);
}