Royal Purple
HEX: #7851A9 | Modern Palette
Color Specifications
#7851A9
120, 81, 169
266°, 52% ,66%
28.99, 52.07, 0, 33.73
About Royal Purple
Royal Purple (#7851A9) is a color with RGB(120, 81, 169) and HSL(266.59°, 52.07%, 66.27%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Logo. Its complementary color is #82A951, which creates strong contrast. Its triadic palette includes #A97851 and #51A978. The name comes from purpura (Latin).
- HEX: #7851A9
- RGB: 120, 81, 169
- HSL: 266.59°, 52.07%, 66.27%
- Mood: Romantic
- Use case: Text, Button, Logo
- Complementary color: #82A951
- Triadic colors: #A97851, #51A978
- The name comes from purpura (Latin).
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 #7851A9 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Royal Purple, also known as Tyrian Purple, is one of the most historically significant and expensive dyes. It was produced by the ancient Phoenicians, particularly in the city of Tyre (modern-day Lebanon), from the mucus secretions of several species of murex snails. The process was extremely labor-intensive, requiring tens of thousands of snails to produce a small amount of dye, making it prohibitively expensive. Due to its cost and vibrant, fade-resistant color, it became a symbol of status, wealth, and power. It was worn by emperors, kings, and high-ranking religious figures in the Roman, Byzantine, and Holy Roman Empires. Sumptuary laws often restricted its use to royalty and the highest nobility. The fall of Constantinople in 1453 is often cited as the end of its large-scale production, though knowledge of its creation persisted.
First Recorded Use
Circa 1500 BCE (for the dye); 14th century (for the color name in English)
Cultural Associations
Royal Purple is deeply embedded in Western culture as a symbol of royalty, nobility, luxury, and spiritual authority. In ancient Rome, only the Emperor could wear a toga entirely dyed in Tyrian Purple. Senators had a purple stripe on their togas. It is also associated with divinity and the sacred, often seen in vestments of bishops and cardinals in some Christian traditions. Its rarity and difficulty of production contributed to its mystique and enduring symbolism. Even today, 'purple' is often used metaphorically to describe something regal or luxurious.
Code Snippets
/* Background */
.element {
background-color: #7851A9;
}
/* Text */
.element {
color: #7851A9;
}
/* Border */
.element {
border: 1px solid #7851A9;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#7851A9,
#AED67C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#7851A9,
#AED67C
);
}
// SCSS variable
$royal-purple: #7851A9;
// With RGB channels (useful for rgba() usage)
$royal-purple-r: 120;
$royal-purple-g: 81;
$royal-purple-b: 169;
// Usage
.element {
background-color: $royal-purple;
color: rgba($royal-purple-r, $royal-purple-g, $royal-purple-b, 0.8);
}