Regalia
HEX: #522D80 | Modern Palette
Color Specifications
#522D80
82, 45, 128
266°, 64% ,50%
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
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 #522D80 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}