Regalia

HEX: #522D80 | Modern Palette

On White
10.26:1
PASS
On Black
2.05:1
FAIL

Color Specifications

HEX
#522D80
RGB
82, 45, 128
HSL
266°, 64% ,50%
CMYK
35.94, 64.84, 0, 49.8

About Regalia

Regalia (#522D80) is a color with RGB(82, 45, 128) and HSL(266.75°, 64.84%, 50.2%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #5B802D, which creates strong contrast. Its triadic palette includes #80522D and #2D8052. The name comes from regalis (Latin).

  • HEX: #522D80
  • RGB: 82, 45, 128
  • HSL: 266.75°, 64.84%, 50.2%
  • Mood: Romantic
  • Use case: Text, Button, Accent
  • Complementary color: #5B802D
  • Triadic colors: #80522D, #2D8052
  • The name comes from regalis (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 #522D80 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #3B3B80
Protanopia #333380
Tritanopia #453F3F
Achromatopsia #414141

Frequently Asked Questions

Regalia (#522D80) is a color with RGB(82, 45, 128) and HSL(266.75°, 64.84%, 50.2%).

#522D80 pairs strongly with #5B802D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#522D80 is suitable for Text, Button, Accent.

#522D80 is commonly associated with Romantic.

The name Regalia is linked to regalis from Latin, meaning royal, kingly.

Name, History & Etymology

Origin Word regalis
Meaning royal, kingly
Language Latin
First Recorded Use 17th Century

History

The word "regalia" entered English from Medieval Latin 'regalia', which is the neuter plural of 'regalis' meaning 'royal'. Initially, it referred specifically to the 'rights and prerogatives of a sovereign' (jura regalia). Over time, its meaning broadened to include the 'ensigns and symbols of royalty', such as crowns, scepters, and other ceremonial objects. By the 18th century, it was also used to describe the distinctive dress or insignia of an order or office, and later, any elaborate or formal clothing. The modern usage often refers to the symbols of office or membership in any group, not just royalty.

First Recorded Use

1650s

Cultural Associations

Regalia plays a significant role in many cultures and organizations worldwide. From the crowns and scepters of European monarchies to the elaborate headdresses and ceremonial attire of indigenous peoples, regalia serves to signify status, power, identity, and tradition. It is often imbued with symbolic meaning, representing historical lineage, spiritual beliefs, or the values of a community. Examples include academic regalia (caps and gowns), Masonic regalia, and the ceremonial dress of various religious and military orders. The display and wearing of regalia are often central to rituals, ceremonies, and public events, reinforcing social hierarchies and collective identities.

Similar Named Colors

Spanish Violet #4C2882 ΔE 1.88
Blue-magenta Violet #553592 ΔE 3.56
Rebecca Purple #663399 ΔE 5.12
Eminence #6C3082 ΔE 5.73

Code Snippets

/* Background */
.element {
    background-color: #522D80;
}

/* Text */
.element {
    color: #522D80;
}

/* Border */
.element {
    border: 1px solid #522D80;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #522D80,
        #89D22E
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #522D80,
        #89D22E
    );
}

// SCSS variable
$regalia: #522D80;

// With RGB channels (useful for rgba() usage)
$regalia-r: 82;
$regalia-g: 45;
$regalia-b: 128;

// Usage
.element {
    background-color: $regalia;
    color: rgba($regalia-r, $regalia-g, $regalia-b, 0.8);
}