Ebony

HEX: #555D50 | Modern Palette

On White
6.85:1
PASS
On Black
3.07:1
FAIL

Color Specifications

HEX
#555D50
RGB
85, 93, 80
HSL
96°, 13% ,36%
CMYK
8.6, 0, 13.98, 63.53

About Ebony

Ebony (#555D50) is a color with RGB(85, 93, 80) and HSL(96.92°, 13.98%, 36.47%). It is commonly associated with Calm, Earthy moods. In design, it fits Muted, Cool styles and is suitable for Text, Background, Border. Its complementary color is #58505D, which creates strong contrast. Its triadic palette includes #50555D and #5D5055. The name comes from hbny (Ancient Egyptian), ἔβενος (ébenos - Greek), hebenus (Latin) (Ancient Egyptian, Greek, Latin).

  • HEX: #555D50
  • RGB: 85, 93, 80
  • HSL: 96.92°, 13.98%, 36.47%
  • Mood: Calm, Earthy
  • Style: Muted, Cool
  • Use case: Text, Background, Border
  • Complementary color: #58505D
  • Triadic colors: #50555D, #5D5055
  • The name comes from hbny (Ancient Egyptian), ἔβενος (ébenos - Greek), hebenus (Latin) (Ancient Egyptian, Greek, 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 #555D50 from deepest shade to lightest tint.

Color Characteristics

Mood
Calm Earthy
Style
Muted Cool

Accessibility Simulation

Deuteranopia #5B5B50
Protanopia #5C5C50
Tritanopia #575B5B
Achromatopsia #5A5A5A

Frequently Asked Questions

Ebony (#555D50) is a color with RGB(85, 93, 80) and HSL(96.92°, 13.98%, 36.47%).

#555D50 pairs strongly with #58505D as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#555D50 is suitable for Text, Background, Border and works well with Muted, Cool styles.

#555D50 is commonly associated with Calm, Earthy.

The name Ebony is linked to hbny (Ancient Egyptian), ἔβενος (ébenos - Greek), hebenus (Latin) from Ancient Egyptian, Greek, Latin, meaning Ebony tree, ebony wood.

Name, History & Etymology

Origin Word hbny (Ancient Egyptian), ἔβενος (ébenos - Greek), hebenus (Latin)
Meaning Ebony tree, ebony wood
Language Ancient Egyptian, Greek, Latin
First Recorded Use Ancient

History

The word 'ebony' has a long and rich history, tracing back to Ancient Egypt where 'hbny' referred to the dark, dense wood. This term was adopted into Greek as 'ébenos' and subsequently into Latin as 'hebenus'. From Latin, it evolved into Old French 'ebene' and then into Middle English 'ebony'. The wood itself has been highly prized for millennia for its durability, fine texture, and striking dark color, used in furniture, carvings, musical instruments, and decorative objects. Its association with darkness and richness has also led to its use in metaphorical contexts.

First Recorded Use

Circa 3000 BCE (referring to the wood/tree)

Cultural Associations

Ebony wood holds significant cultural value across various civilizations. In ancient Egypt, it was used for royal furniture and religious artifacts. In many African cultures, ebony trees are considered sacred and are associated with strength and protection. Its deep black color has also made it a symbol of elegance, luxury, and mystery in Western cultures, often contrasted with ivory. The term 'ebony' has also been used to describe a deep black color in general, and, controversially, as a descriptor for people of African descent, particularly in historical contexts, which carries complex social and racial connotations.

Similar Named Colors

Feldgrau #4D5D53 ΔE 3.63
Gray Asparagus #465945 ΔE 5.95
Rifle Green #444C38 ΔE 6.87
Rifle Green #414833 ΔE 8.23

Code Snippets

/* Background */
.element {
    background-color: #555D50;
}

/* Text */
.element {
    color: #555D50;
}

/* Border */
.element {
    border: 1px solid #555D50;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #555D50,
        #60506A
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #555D50,
        #60506A
    );
}

// SCSS variable
$ebony: #555D50;

// With RGB channels (useful for rgba() usage)
$ebony-r: 85;
$ebony-g: 93;
$ebony-b: 80;

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