Liver

HEX: #534B4F | Modern Palette

On White
8.44:1
PASS
On Black
2.49:1
FAIL

Color Specifications

HEX
#534B4F
RGB
83, 75, 79
HSL
330°, 9% ,32%
CMYK
0, 9.64, 4.82, 67.45

About Liver

Liver (#534B4F) is a color with RGB(83, 75, 79) and HSL(330°, 9.64%, 32.55%). It is commonly associated with Minimal moods. In design, it fits Monochrome, Muted styles and is suitable for Text, Background, Border. Its complementary color is #4B534F, which creates strong contrast. Its triadic palette includes #4F534B and #4B4F53. The name comes from lifer (Old English).

  • HEX: #534B4F
  • RGB: 83, 75, 79
  • HSL: 330°, 9.64%, 32.55%
  • Mood: Minimal
  • Style: Monochrome, Muted
  • Use case: Text, Background, Border
  • Complementary color: #4B534F
  • Triadic colors: #4F534B, #4B4F53
  • The name comes from lifer (Old English).

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 #534B4F from deepest shade to lightest tint.

Color Characteristics

Accessibility Simulation

Deuteranopia #4D4D4F
Protanopia #4C4C4F
Tritanopia #534C4C
Achromatopsia #4D4D4D

Frequently Asked Questions

Liver (#534B4F) is a color with RGB(83, 75, 79) and HSL(330°, 9.64%, 32.55%).

#534B4F pairs strongly with #4B534F as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#534B4F is suitable for Text, Background, Border and works well with Monochrome, Muted styles.

#534B4F is commonly associated with Minimal.

The name Liver is linked to lifer from Old English, meaning the organ that secretes bile and purifies the blood.

Name, History & Etymology

Origin Word lifer
Meaning the organ that secretes bile and purifies the blood
Language Old English
First Recorded Use Before 900 AD

History

The word 'liver' comes from Old English 'lifer', which itself has Proto-Germanic roots (*librō). This suggests a very ancient term for the organ within the Germanic language family. Cognates can be found in other Germanic languages, such as German 'Leber', Dutch 'lever', and Old Norse 'lifr'. The term has remained remarkably stable in form and meaning throughout the history of English.

First Recorded Use

The exact first recorded use is difficult to pinpoint to a specific document, but the word 'lifer' is attested in Old English texts from the Anglo-Saxon period.

Cultural Associations

In many ancient cultures, the liver was considered a vital organ, often associated with emotions, courage, or even the soul. For example, in ancient Mesopotamia, the liver was used for divination (hepatoscopy). In some classical traditions, it was believed to be the seat of passion or anger. The phrase 'lily-livered' (meaning cowardly) reflects an older belief that a healthy, courageous person had a dark red liver, while a pale liver indicated cowardice. The liver also plays a significant role in culinary traditions worldwide, being a prized food source in many cuisines.

Similar Named Colors

Quartz #51484F ΔE 1.99
Wenge #645452 ΔE 5.91
Davy Grey #555555 ΔE 6.19
Purple Taupe #50404D ΔE 6.73

Code Snippets

/* Background */
.element {
    background-color: #534B4F;
}

/* Text */
.element {
    color: #534B4F;
}

/* Border */
.element {
    border: 1px solid #534B4F;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #534B4F,
        #4B5B53
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #534B4F,
        #4B5B53
    );
}

// SCSS variable
$liver: #534B4F;

// With RGB channels (useful for rgba() usage)
$liver-r: 83;
$liver-g: 75;
$liver-b: 79;

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