CSS Named Color

Copy-ready color values

HEX#B8860B
RGBrgb(184, 134, 11)
HSLhsl(43, 89%, 38%)
HSVhsv(43, 94%, 72%)
CMYK approx.cmyk(0, 27, 94, 28)

Color value table

FormatValueCopy
HEX#B8860B
RGBrgb(184, 134, 11)
HSLhsl(43, 89%, 38%)
HSVhsv(43, 94%, 72%)
CMYK approx.cmyk(0, 27, 94, 28)
CSS keyworddarkgoldenrod

Contrast and classification

DarkLightness3.25:1Contrast with white6.45:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#BF9223

White 30%
#CDAA54

White 70%
#EADBB6

White 90%
#F8F3E7

Black 10%
#A6790A

Black 30%
#815E08

Black 70%
#372803

Black 90%
#120D01

Harmony palettes

Complementary

#4779F4
#7399F7

Analogous

#B28620
#B8771A

Triadic

#860BB8
#0BB886

Split complementary

#6891F6
#3A63C8

Using Darkgoldenrod

Darkgoldenrod 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-darkgoldenrod: #b8860b;
}

.button-primary {
  background: var(--color-darkgoldenrod);
  color: #000000;
}

$darkgoldenrod: #b8860b;

// Tailwind arbitrary value
class="bg-[#b8860b] text-white"