Eminence

HEX: #6C3082 | Modern Palette

On White
8.81:1
PASS
On Black
2.38:1
FAIL

Color Specifications

HEX
#6C3082
RGB
108, 48, 130
HSL
283°, 63% ,50%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Eminence #6C3082 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.

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

Eminence #6C3082 pairs with #468230 as its complementary color, and #826C30 and #30826C in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

EMINENCE
Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

EMINENCE
Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

EMINENCE
Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

EMINENCE
Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

EMINENCE
Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

EMINENCE

Shades & Tints

The shade and tint range for Eminence #6C3082 moves from dark #0F0713 tones through the base color to lighter #F5ECF8 tones, making it useful for depth, hierarchy, and background variation.

EMINENCE

Color Characteristics

Mood
Romantic
Style
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #484881
Protanopia #3A3A82
Tritanopia #634242
Achromatopsia #4A4A4A

Frequently Asked Questions

Eminence (#6C3082) is a color with RGB(108, 48, 130) and HSL(283.9°, 63.08%, 50.98%).

#6C3082 pairs strongly with #468230 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#6C3082 is suitable for Text, Button, Accent.

#6C3082 is commonly associated with Romantic.

The name Eminence is linked to eminentia from Latin, meaning prominence, projection, superiority.

Name, History & Etymology

Origin Word eminentia
Meaning prominence, projection, superiority
Language Latin
First Recorded Use Late Middle English

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.

Similar Named Colors

Imperial #602F6B ΔE 4.78
Rebecca Purple #663399 ΔE 5.11
Purple Heart #69359C ΔE 5.34
Regalia #522D80 ΔE 5.73

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