Dark Liver (horses)
HEX: #543D37 | Modern Palette
Color Specifications
#543D37
84, 61, 55
12°, 34% ,32%
0, 27.38, 34.52, 67.06
About Dark Liver (horses)
Dark Liver (horses) (#543D37) is a color with RGB(84, 61, 55) and HSL(12.41°, 34.52%, 32.94%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #374E54, which creates strong contrast. Its triadic palette includes #37543D and #3D3754. The name comes from Dark Liver (English).
- HEX: #543D37
- RGB: 84, 61, 55
- HSL: 12.41°, 34.52%, 32.94%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #374E54
- Triadic colors: #37543D, #3D3754
- The name comes from Dark Liver (English).
Live Components
Color Palettes
Dark Liver (horses) #543D37 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Liver (horses) #543D37 pairs with #374E54 as its complementary color, and #37543D and #3D3754 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The term 'liver' to describe a color has been used for centuries, referring to the organ's typical dark reddish-brown hue. When applied to horses, 'liver chestnut' became a recognized color description. 'Dark liver' specifically denotes the deepest, richest, and often least reddish or most purplish-brown end of the liver chestnut spectrum. It's a genetic variation of chestnut, where the horse has two copies of the recessive 'e' gene and no dominant 'A' gene. The specific modifiers that create the 'liver' and 'dark liver' shades are not fully understood but are thought to be polygenic. This color is particularly common in certain breeds like the Morgan horse, American Quarter Horse, and some draft breeds.
First Recorded Use
The term 'liver chestnut' (of which 'dark liver' is a shade) appears in equestrian literature and breed descriptions from at least the mid-18th century. Specific mention of 'dark liver' as a distinct shade within liver chestnuts also emerges around this time.
Cultural Associations
Dark liver horses are often admired for their striking, deep color, which can appear almost black in certain lights. They are sometimes mistaken for black horses, especially without direct sunlight. In some equestrian disciplines, certain colors are perceived to be more desirable, and dark liver is generally considered a very attractive and classic color. It is a recognized color in most breed registries that accept chestnuts.
Code Snippets
/* Background */
.element {
background-color: #543D37;
}
/* Text */
.element {
color: #543D37;
}
/* Border */
.element {
border: 1px solid #543D37;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#543D37,
#376571
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#543D37,
#376571
);
}
// SCSS variable
$dark-liver-(horses): #543D37;
// With RGB channels (useful for rgba() usage)
$dark-liver-(horses)-r: 84;
$dark-liver-(horses)-g: 61;
$dark-liver-(horses)-b: 55;
// Usage
.element {
background-color: $dark-liver-(horses);
color: rgba($dark-liver-(horses)-r, $dark-liver-(horses)-g, $dark-liver-(horses)-b, 0.8);
}