Spicy Mix

HEX: #8B5F4D | Modern Palette

On White
5.47:1
PASS
On Black
3.84:1
FAIL

Color Specifications

HEX
#8B5F4D
RGB
139, 95, 77
HSL
17°, 44% ,54%
CMYK
0, 31.65, 44.6, 45.49

About Spicy Mix

Spicy Mix (#8B5F4D) is a color with RGB(139, 95, 77) and HSL(17.42°, 44.6%, 54.51%). It is commonly associated with Romantic, Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #4D798B, which creates strong contrast. Its triadic palette includes #4D8B5F and #5F4D8B.

  • HEX: #8B5F4D
  • RGB: 139, 95, 77
  • HSL: 17.42°, 44.6%, 54.51%
  • Mood: Romantic, Earthy
  • Style: Warm
  • Use case: Text, Logo, Print
  • Complementary color: #4D798B
  • Triadic colors: #4D8B5F, #5F4D8B

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

Color Characteristics

Style
Warm
Use case
Text Logo Print

Accessibility Simulation

Deuteranopia #6E6E4B
Protanopia #65654D
Tritanopia #8C5D5D
Achromatopsia #696969

Frequently Asked Questions

Spicy Mix (#8B5F4D) is a color with RGB(139, 95, 77) and HSL(17.42°, 44.6%, 54.51%).

#8B5F4D pairs strongly with #4D798B as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#8B5F4D is suitable for Text, Logo, Print and works well with Warm styles.

#8B5F4D is commonly associated with Romantic, Earthy.

Similar Named Colors

Dark Brown-tangelo #88654E ΔE 4.39
Coconut #965A3E ΔE 4.82
Dark Chestnut #986960 ΔE 6.08
Pastel Brown #836953 ΔE 7.61

Code Snippets

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

/* Text */
.element {
    color: #8B5F4D;
}

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

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #8B5F4D,
        #57A1BF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #8B5F4D,
        #57A1BF
    );
}

// SCSS variable
$spicy-mix: #8B5F4D;

// With RGB channels (useful for rgba() usage)
$spicy-mix-r: 139;
$spicy-mix-g: 95;
$spicy-mix-b: 77;

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