Liver (dogs)
HEX: #B86D29 | Modern Palette
Color Specifications
#B86D29
184, 109, 41
28°, 77% ,72%
0, 40.76, 77.72, 27.84
About Liver (dogs)
Liver (dogs) (#B86D29) is a color with RGB(184, 109, 41) and HSL(28.53°, 77.72%, 72.16%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #2974B8, which creates strong contrast. Its triadic palette includes #29B86D and #6D29B8. The name comes from Liver (dogs) (English).
- HEX: #B86D29
- RGB: 184, 109, 41
- HSL: 28.53°, 77.72%, 72.16%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #2974B8
- Triadic colors: #29B86D, #6D29B8
- The name comes from Liver (dogs) (English).
Live Components
Color Palettes
Liver (dogs) #B86D29 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
Liver (dogs) #B86D29 pairs with #2974B8 as its complementary color, and #29B86D and #6D29B8 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 liver has been recognized as a vital organ across many cultures and species for millennia. In ancient civilizations, animal livers, including those from dogs, were often used in divination (hepatoscopy) to predict the future, particularly in Mesopotamia and among the Etruscans. Dogs themselves have been domesticated for thousands of years, and their anatomy would have been observed. In a modern biological context, 'Liver (dogs)' refers to the specific anatomical and physiological characteristics of the canine liver, which shares many functions with other mammalian livers but has specific veterinary considerations.
First Recorded Use
The concept of the liver as an organ has existed since ancient times, with specific observations regarding animal livers (including dogs) for culinary, sacrificial, and early anatomical purposes. The precise phrase 'Liver (dogs)' as a distinct entry for analysis would be modern, but the underlying concept is ancient.
Cultural Associations
While not as commonly consumed as liver from other animals in Western cultures, dog liver would have been part of the diet in some historical and regional contexts. More significantly, in ancient divination practices, the liver of sacrificed animals (which could include dogs, depending on the culture and ritual) was meticulously examined for omens. In contemporary culture, the phrase primarily appears in veterinary medicine, pet nutrition, and scientific research contexts.
Code Snippets
/* Background */
.element {
background-color: #B86D29;
}
/* Text */
.element {
color: #B86D29;
}
/* Border */
.element {
border: 1px solid #B86D29;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B86D29,
#81BBEF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B86D29,
#81BBEF
);
}
// SCSS variable
$liver-(dogs): #B86D29;
// With RGB channels (useful for rgba() usage)
$liver-(dogs)-r: 184;
$liver-(dogs)-g: 109;
$liver-(dogs)-b: 41;
// Usage
.element {
background-color: $liver-(dogs);
color: rgba($liver-(dogs)-r, $liver-(dogs)-g, $liver-(dogs)-b, 0.8);
}