Spicy Mix
HEX: #8B5F4D | Modern Palette
Color Specifications
#8B5F4D
139, 95, 77
17°, 44% ,54%
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
Color Palettes
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.
Frequently Asked Questions
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);
}