Grizzly

HEX: #885818 | Modern Palette

On White
6.08:1
PASS
On Black
3.46:1
FAIL

Color Specifications

HEX
#885818
RGB
136, 88, 24
HSL
34°, 82% ,53%
CMYK
0, 35.29, 82.35, 46.67

About Grizzly

Grizzly (#885818) is a color with RGB(136, 88, 24) and HSL(34.29°, 82.35%, 53.33%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #184888, which creates strong contrast. Its triadic palette includes #188858 and #581888. The name comes from Grizzly (English).

  • HEX: #885818
  • RGB: 136, 88, 24
  • HSL: 34.29°, 82.35%, 53.33%
  • Mood: Energetic, Bold
  • Style: Vivid, Warm
  • Use case: Text, Button, Accent
  • Complementary color: #184888
  • Triadic colors: #188858, #581888
  • The name comes from Grizzly (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 #885818 from deepest shade to lightest tint.

Color Characteristics

Style
Vivid Warm
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #696912
Protanopia #5F5F19
Tritanopia #8B5353
Achromatopsia #626262

Frequently Asked Questions

Grizzly (#885818) is a color with RGB(136, 88, 24) and HSL(34.29°, 82.35%, 53.33%).

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

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

#885818 is commonly associated with Energetic, Bold.

The name Grizzly is linked to Grizzly from English, meaning A large North American brown bear (Ursus arctos horribilis) with a hump on its shoulders and long, light-tipped fur, giving it a shaggy, 'grizzled' appearance..

Name, History & Etymology

Origin Word Grizzly
Meaning A large North American brown bear (Ursus arctos horribilis) with a hump on its shoulders and long, light-tipped fur, giving it a shaggy, 'grizzled' appearance.
Language English
First Recorded Use Late 18th Century

History

The word 'grizzly' itself comes from 'grizzle,' meaning gray or streaked with gray, which has roots in Old French 'grisel' (grayish) and ultimately Germanic origins. When applied to the bear, it specifically describes the distinctive silver or white tips on its otherwise brown fur, giving it a 'grizzled' look. Early European explorers and settlers in North America encountered this formidable bear and adopted the descriptive term. Initially, it was sometimes referred to as 'grisly bear' (implying frightful or gruesome), leading to some confusion, but 'grizzly' (referring to color) became the standard.

First Recorded Use

The term 'grizzly bear' is believed to have been first recorded in English around 1784 by explorer Samuel Hearne, though it likely existed in common parlance earlier. The 'grizzly' part refers to its 'grizzled' or streaked with gray/white hair appearance.

Cultural Associations

The grizzly bear holds significant cultural importance, particularly among Indigenous peoples of North America, where it is often revered as a symbol of strength, wisdom, and courage. In broader North American culture, it is an iconic symbol of wilderness and untamed nature. It features prominently in folklore, literature, and conservation efforts. Its image is frequently used in branding related to ruggedness and the outdoors. Despite its fearsome reputation, it is also a subject of fascination and respect.

Similar Named Colors

Golden Brown #996515 ΔE 5.70
Brown (traditional) #964B00 ΔE 7.28
Coyote Brown #81613E ΔE 7.37

Code Snippets

/* Background */
.element {
    background-color: #885818;
}

/* Text */
.element {
    color: #885818;
}

/* Border */
.element {
    border: 1px solid #885818;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #885818,
        #267AEA
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #885818,
        #267AEA
    );
}

// SCSS variable
$grizzly: #885818;

// With RGB channels (useful for rgba() usage)
$grizzly-r: 136;
$grizzly-g: 88;
$grizzly-b: 24;

// Usage
.element {
    background-color: $grizzly;
    color: rgba($grizzly-r, $grizzly-g, $grizzly-b, 0.8);
}