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
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 #B38B6D from deepest shade to lightest tint.
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);
}