CSS Named Color

Copy-ready color values

HEX#BDB76B
RGBrgb(189, 183, 107)
HSLhsl(56, 38%, 58%)
HSVhsv(56, 43%, 74%)
CMYK approx.cmyk(0, 3, 43, 26)

Color value table

FormatValueCopy
HEX#BDB76B
RGBrgb(189, 183, 107)
HSLhsl(56, 38%, 58%)
HSVhsv(56, 43%, 74%)
CMYK approx.cmyk(0, 3, 43, 26)
CSS keyworddarkkhaki

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
#6F74AE

Analogous

#BCB775
#BDAE74

Triadic

#B76BBD
#6BBDB7

Split complementary

#6469A7
#363B79

Using 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"