Liver (organ)
HEX: #6C2E1F | Modern Palette
Color Specifications
#6C2E1F
108, 46, 31
11°, 71% ,42%
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
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 #6C2E1F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}