Liver (organ)

HEX: #6C2E1F | Modern Palette

On White
10.25:1
PASS
On Black
2.05:1
FAIL

Color Specifications

HEX
#6C2E1F
RGB
108, 46, 31
HSL
11°, 71% ,42%
CMYK
0, 57.41, 71.3, 57.65

About Liver (organ)

Liver (organ) (#6C2E1F) is a color with RGB(108, 46, 31) and HSL(11.69°, 71.3%, 42.35%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #1F5D6C, which creates strong contrast. Its triadic palette includes #1F6C2E and #2E1F6C. The name comes from *lei-p- (Proto-Indo-European).

  • HEX: #6C2E1F
  • RGB: 108, 46, 31
  • HSL: 11.69°, 71.3%, 42.35%
  • Mood: Energetic, Romantic
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #1F5D6C
  • Triadic colors: #1F6C2E, #2E1F6C
  • The name comes from *lei-p- (Proto-Indo-European).

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

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #47471B
Protanopia #393920
Tritanopia #6D2C2C
Achromatopsia #414141

Frequently Asked Questions

Liver (organ) (#6C2E1F) is a color with RGB(108, 46, 31) and HSL(11.69°, 71.3%, 42.35%).

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

#6C2E1F is suitable for Text, Button, Accent and works well with Vivid, Warm styles.

#6C2E1F is commonly associated with Energetic, Romantic.

The name Liver (organ) is linked to *lei-p- from Proto-Indo-European, meaning to stick, to adhere, fat.

Name, History & Etymology

Origin Word *lei-p-
Meaning to stick, to adhere, fat
Language Proto-Indo-European
First Recorded Use Old English

History

The word 'liver' traces its roots back to the Proto-Indo-European *lei-p-, which meant 'to stick, to adhere, fat'. This connection to fat is significant as the liver is a major organ involved in fat metabolism and storage. This root evolved into Proto-Germanic *librō, and then into Old English lifer. The term has remained remarkably consistent in its form and meaning throughout the Germanic languages. Its anatomical meaning has been stable for millennia, referring to the large glandular organ in the abdomen of vertebrates, involved in many metabolic processes.

First Recorded Use

Before 900 AD

Cultural Associations

Across many ancient cultures, the liver was considered a vital organ, often associated with life, emotion, and even prophecy. In ancient Mesopotamia, the liver was believed to be the seat of the soul and emotions, and liver divination (hepatoscopy) was a common practice to predict the future or understand the will of the gods by examining the livers of sacrificed animals. The Romans also practiced hepatoscopy. In some cultures, the liver was seen as the source of courage or anger. In traditional Chinese medicine, the liver is associated with the element wood and is responsible for the smooth flow of qi (energy) and blood, as well as emotions like anger and frustration.

Similar Named Colors

Caput Mortuum #592720 ΔE 5.35
Persian Plum #701C1C ΔE 5.78
Seal Brown #59260B ΔE 6.31
Burnt Umber #8A3324 ΔE 6.46

Code Snippets

/* Background */
.element {
    background-color: #6C2E1F;
}

/* Text */
.element {
    color: #6C2E1F;
}

/* Border */
.element {
    border: 1px solid #6C2E1F;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #6C2E1F,
        #1F9BB9
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #6C2E1F,
        #1F9BB9
    );
}

// SCSS variable
$liver-(organ): #6C2E1F;

// With RGB channels (useful for rgba() usage)
$liver-(organ)-r: 108;
$liver-(organ)-g: 46;
$liver-(organ)-b: 31;

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