Liver
HEX: #534B4F | Modern Palette
Color Specifications
#534B4F
83, 75, 79
330°, 9% ,32%
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
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 #534B4F from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#4D4D4F
#4C4C4F
#534C4C
#4D4D4D
Frequently Asked Questions
Name, History & Etymology
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
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);
}