CSS Named Color
Copy-ready color values
HEX
#BDB76BRGB
rgb(189, 183, 107)HSL
hsl(56, 38%, 58%)HSV
hsv(56, 43%, 74%)CMYK approx.
cmyk(0, 3, 43, 26)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #BDB76B | |
| RGB | rgb(189, 183, 107) | |
| HSL | hsl(56, 38%, 58%) | |
| HSV | hsv(56, 43%, 74%) | |
| CMYK approx. | cmyk(0, 3, 43, 26) | |
| CSS keyword | darkkhaki |
Contrast and classification
LightLightness2.07:1Contrast with white10.15:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#C4BE7A
White 30%#D1CD97
White 70%#EBE9D3
White 90%#F8F8F0
Black 10%#AAA560
Black 30%#84804B
Black 70%#393720
Black 90%#13120B
Harmony palettes
Complementary
#424894#6F74AEAnalogous
#BCB775#BDAE74Triadic
#B76BBD#6BBDB7Split complementary
#6469A7#363B79Using Darkkhaki
Darkkhaki works best when it is chosen with contrast, surrounding colors, and interface state in mind. Use the HEX value for static CSS, RGB when you need channel-level control, and HSL when adjusting lightness or saturation for hover states. The CMYK value is an approximate screen-to-print conversion, so print workflows should still rely on calibrated design software or a printer profile.
CSS, SCSS, and Tailwind examples
:root {
--color-darkkhaki: #bdb76b;
}
.button-primary {
background: var(--color-darkkhaki);
color: #000000;
}
$darkkhaki: #bdb76b;
// Tailwind arbitrary value
class="bg-[#bdb76b] text-white"