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
Dark Khaki #BDB76B is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Dark Khaki #BDB76B pairs with #6B71BD as its complementary color, and #6BBDB7 and #B76BBD in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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);
}