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
Spicy Mix #8B5F4D 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
Spicy Mix #8B5F4D pairs with #4D798B as its complementary color, and #4D8B5F and #5F4D8B in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}