Dark Khaki
HEX: #BDB76B | Modern Palette
Color Specifications
#BDB76B
189, 183, 107
55°, 38% ,58%
0, 3, 43, 26
About Dark Khaki
Dark Khaki (#BDB76B) is a color with RGB(189, 183, 107) and HSL(55.6°, 38.3%, 58%). It is commonly associated with Earthy moods. In design, it fits Warm styles and is suitable for Text, Logo, Print. Its complementary color is #6B71BD, which creates strong contrast. Its triadic palette includes #6BBDB7 and #B76BBD.
- HEX: #BDB76B
- RGB: 189, 183, 107
- HSL: 55.6°, 38.3%, 58%
- Mood: Earthy
- Style: Warm
- Use case: Text, Logo, Print
- Complementary color: #6B71BD
- Triadic colors: #6BBDB7, #B76BBD
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 #BDB76B from deepest shade to lightest tint.
Frequently Asked Questions
Similar Named Colors
Code Snippets
/* Background */
.element {
background-color: #BDB76B;
}
/* Text */
.element {
color: #BDB76B;
}
/* Border */
.element {
border: 1px solid #BDB76B;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BDB76B,
#6B71BD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BDB76B,
#6B71BD
);
}
// SCSS variable
$dark-khaki: #BDB76B;
// With RGB channels (useful for rgba() usage)
$dark-khaki-r: 189;
$dark-khaki-g: 183;
$dark-khaki-b: 107;
// Usage
.element {
background-color: $dark-khaki;
color: rgba($dark-khaki-r, $dark-khaki-g, $dark-khaki-b, 0.8);
}