Royal Purple

HEX: #7851A9 | Modern Palette

On White
5.92:1
PASS
On Black
3.55:1
FAIL

Color Specifications

HEX
#7851A9
RGB
120, 81, 169
HSL
266°, 52% ,66%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #5E5EA9
Protanopia #5656A9
Tritanopia #6B6262
Achromatopsia #646464

Frequently Asked Questions

Royal Purple (#7851A9) is a color with RGB(120, 81, 169) and HSL(266.59°, 52.07%, 66.27%).

#7851A9 pairs strongly with #82A951 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#7851A9 is suitable for Text, Button, Logo.

#7851A9 is commonly associated with Romantic.

The name Royal Purple is linked to purpura from Latin, meaning purple dye, purple-fish.

Name, History & Etymology

Origin Word purpura
Meaning purple dye, purple-fish
Language Latin
First Recorded Use Antiquity

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.

Similar Named Colors

Dark Lavender #734F96 ΔE 3.67
Deep Lilac #9955BB ΔE 7.09
Purpureus #9A4EAE ΔE 7.26
Slate Blue #6A5ACD ΔE 7.82

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);
}