Liver (dogs)

HEX: #B86D29 | Modern Palette

On White
3.99:1
FAIL
On Black
5.26:1
PASS

Color Specifications

HEX
#B86D29
RGB
184, 109, 41
HSL
28°, 77% ,72%
CMYK
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

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

Color Characteristics

Mood
Playful
Style
Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #888821
Protanopia #78782A
Tritanopia #BB6767
Achromatopsia #7F7F7F

Frequently Asked Questions

Liver (dogs) (#B86D29) is a color with RGB(184, 109, 41) and HSL(28.53°, 77.72%, 72.16%).

#B86D29 pairs strongly with #2974B8 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B86D29 is suitable for Text, Button, Accent and works well with Warm styles.

#B86D29 is commonly associated with Playful.

The name Liver (dogs) is linked to Liver (dogs) from English, meaning The organ in dogs responsible for detoxification, metabolism, and nutrient storage..

Name, History & Etymology

Origin Word Liver (dogs)
Meaning The organ in dogs responsible for detoxification, metabolism, and nutrient storage.
Language English
First Recorded Use Ancient

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.

Similar Named Colors

Copper #B87333 ΔE 2.04
Light Brown #B5651D ΔE 2.62
Ruddy Brown #BB6528 ΔE 3.78
Alloy Orange #C46210 ΔE 4.60

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);
}