Wenge

HEX: #645452 | Modern Palette

On White
7.16:1
PASS
On Black
2.93:1
FAIL

Color Specifications

HEX
#645452
RGB
100, 84, 82
HSL
6°, 18% ,39%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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

Mood
Style
Muted Warm

Accessibility Simulation

Deuteranopia #595952
Protanopia #565652
Tritanopia #645454
Achromatopsia #585858

Frequently Asked Questions

Wenge (#645452) is a color with RGB(100, 84, 82) and HSL(6.67°, 18%, 39.22%).

#645452 pairs strongly with #526264 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#645452 is suitable for Text, Background, Border and works well with Muted, Warm styles.

The name Wenge is linked to wenge from Kikongo, meaning a type of tree.

Name, History & Etymology

Origin Word wenge
Meaning a type of tree
Language Kikongo
First Recorded Use Early 20th Century

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

Umber #635147 ΔE 4.46
Medium Taupe #674C47 ΔE 5.04
Liver #534B4F ΔE 5.91
Rose Ebony #674846 ΔE 6.75

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);
}