Light Taupe
HEX: #B38B6D | Modern Palette
Color Specifications
#B38B6D
179, 139, 109
25°, 31% ,56%
0, 22, 39, 30
About Light Taupe
Light Taupe (#B38B6D) is a color with RGB(179, 139, 109) and HSL(25.7°, 31.5%, 56.5%). It is commonly associated with Earthy moods. In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #6D95B3, which creates strong contrast. Its triadic palette includes #6DB38B and #8B6DB3.
- HEX: #B38B6D
- RGB: 179, 139, 109
- HSL: 25.7°, 31.5%, 56.5%
- Mood: Earthy
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #6D95B3
- Triadic colors: #6DB38B, #8B6DB3
Live Components
Color Palettes
Light Taupe #B38B6D 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
Light Taupe #B38B6D pairs with #6D95B3 as its complementary color, and #6DB38B and #8B6DB3 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: #B38B6D;
}
/* Text */
.element {
color: #B38B6D;
}
/* Border */
.element {
border: 1px solid #B38B6D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B38B6D,
#6D95B3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B38B6D,
#6D95B3
);
}
// SCSS variable
$light-taupe: #B38B6D;
// With RGB channels (useful for rgba() usage)
$light-taupe-r: 179;
$light-taupe-g: 139;
$light-taupe-b: 109;
// Usage
.element {
background-color: $light-taupe;
color: rgba($light-taupe-r, $light-taupe-g, $light-taupe-b, 0.8);
}