Medium Taupe
HEX: #674C47 | Modern Palette
Color Specifications
#674C47
103, 76, 71
9°, 31% ,40%
0, 26.21, 31.07, 59.61
About Medium Taupe
Medium Taupe (#674C47) is a color with RGB(103, 76, 71) and HSL(9.37°, 31.07%, 40.39%). In design, it fits Muted, Warm styles and is suitable for Text, Print. Its complementary color is #476267, which creates strong contrast. Its triadic palette includes #47674C and #4C4767.
- HEX: #674C47
- RGB: 103, 76, 71
- HSL: 9.37°, 31.07%, 40.39%
- Style: Muted, Warm
- Use case: Text, Print
- Complementary color: #476267
- Triadic colors: #47674C, #4C4767
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 #674C47 from deepest shade to lightest tint.
Frequently Asked Questions
Code Snippets
/* Background */
.element {
background-color: #674C47;
}
/* Text */
.element {
color: #674C47;
}
/* Border */
.element {
border: 1px solid #674C47;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#674C47,
#477D87
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#674C47,
#477D87
);
}
// SCSS variable
$medium-taupe: #674C47;
// With RGB channels (useful for rgba() usage)
$medium-taupe-r: 103;
$medium-taupe-g: 76;
$medium-taupe-b: 71;
// Usage
.element {
background-color: $medium-taupe;
color: rgba($medium-taupe-r, $medium-taupe-g, $medium-taupe-b, 0.8);
}