Eminence
HEX: #6C3082 | Modern Palette
Color Specifications
#6C3082
108, 48, 130
283°, 63% ,50%
16.92, 63.08, 0, 49.02
About Eminence
Eminence (#6C3082) is a color with RGB(108, 48, 130) and HSL(283.9°, 63.08%, 50.98%). It is commonly associated with Romantic moods. In design, it is suitable for Text, Button, Accent. Its complementary color is #468230, which creates strong contrast. Its triadic palette includes #826C30 and #30826C. The name comes from eminentia (Latin).
- HEX: #6C3082
- RGB: 108, 48, 130
- HSL: 283.9°, 63.08%, 50.98%
- Mood: Romantic
- Use case: Text, Button, Accent
- Complementary color: #468230
- Triadic colors: #826C30, #30826C
- The name comes from eminentia (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 #6C3082 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'eminence' entered English from Old French 'eminence', which itself derived directly from the Latin 'eminentia'. In Latin, 'eminentia' was a noun formed from the verb 'eminere', meaning 'to stand out, project, be prominent'. This verb is composed of 'e-' (out) and 'minere' (to project, jut). Initially, 'eminence' in English referred to a projecting part or a height. By the 15th century, it began to acquire its more abstract meaning of superiority in rank, achievement, or character. The specific title 'His Eminence' for cardinals of the Roman Catholic Church emerged later, becoming formalized in the 17th century.
First Recorded Use
Late 14th century
Cultural Associations
The term 'Eminence' is most notably recognized as a title of honor for cardinals of the Roman Catholic Church ('His Eminence' or 'Your Eminence'). This usage signifies their high rank and distinction within the Church hierarchy. Beyond this specific religious context, 'eminence' is used more generally to describe a person who is famous, respected, or distinguished in their field, often implying a long and successful career. It conveys a sense of established greatness rather than fleeting fame. In a more archaic or literal sense, it can still refer to a high place or a projecting part of something, though this usage is less common today.
Code Snippets
/* Background */
.element {
background-color: #6C3082;
}
/* Text */
.element {
color: #6C3082;
}
/* Border */
.element {
border: 1px solid #6C3082;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#6C3082,
#5DD133
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#6C3082,
#5DD133
);
}
// SCSS variable
$eminence: #6C3082;
// With RGB channels (useful for rgba() usage)
$eminence-r: 108;
$eminence-g: 48;
$eminence-b: 130;
// Usage
.element {
background-color: $eminence;
color: rgba($eminence-r, $eminence-g, $eminence-b, 0.8);
}