Wenge
HEX: #645452 | Modern Palette
Color Specifications
#645452
100, 84, 82
6°, 18% ,39%
0, 16, 18, 60.78
About Wenge
Wenge (#645452) is a color with RGB(100, 84, 82) and HSL(6.67°, 18%, 39.22%). In design, it fits Muted, Warm styles and is suitable for Text, Background, Border. Its complementary color is #526264, which creates strong contrast. Its triadic palette includes #526454 and #545264. The name comes from wenge (Kikongo).
- HEX: #645452
- RGB: 100, 84, 82
- HSL: 6.67°, 18%, 39.22%
- Style: Muted, Warm
- Use case: Text, Background, Border
- Complementary color: #526264
- Triadic colors: #526454, #545264
- The name comes from wenge (Kikongo).
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 #645452 from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#595952
#565652
#645454
#585858
Frequently Asked Questions
Name, History & Etymology
History
Wenge (Millettia laurentii) is a timber tree native to tropical West Africa, particularly the Democratic Republic of Congo, Cameroon, Gabon, and Equatorial Guinea. The name 'wenge' itself is derived from the Kikongo language, spoken by the Kongo people, who have long inhabited the regions where the tree grows. Historically, the wood was used by local communities for various purposes, including tools, furniture, and construction, valued for its hardness and durability. As European colonial powers expanded their influence in Africa, the timber industry began to develop, leading to the export of exotic hardwoods. Wenge gained international recognition in the 20th century, becoming popular in high-end furniture, flooring, and musical instruments due to its distinctive dark color and strong grain. Its popularity peaked in the late 20th and early 21st centuries, leading to concerns about overharvesting and sustainability. Efforts are now underway to promote sustainable forestry practices for wenge.
First Recorded Use
The term 'wenge' for the wood species is believed to have entered broader Western usage in the early 20th century as the timber became more commercially available and recognized outside of its native regions.
Cultural Associations
In its native regions, the wenge tree and its wood have been a practical resource for generations. While not imbued with extensive spiritual or mythical significance in the same way some other African trees might be, its utility and strength have made it a valued material. Its dark, rich appearance has also made it a symbol of luxury and sophistication in Western design and culture, often associated with modern and minimalist aesthetics.
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #645452;
}
/* Text */
.element {
color: #645452;
}
/* Border */
.element {
border: 1px solid #645452;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#645452,
#527276
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#645452,
#527276
);
}
// SCSS variable
$wenge: #645452;
// With RGB channels (useful for rgba() usage)
$wenge-r: 100;
$wenge-g: 84;
$wenge-b: 82;
// Usage
.element {
background-color: $wenge;
color: rgba($wenge-r, $wenge-g, $wenge-b, 0.8);
}