CSS Named Color
Copy-ready color values
HEX
#B8860BRGB
rgb(184, 134, 11)HSL
hsl(43, 89%, 38%)HSV
hsv(43, 94%, 72%)CMYK approx.
cmyk(0, 27, 94, 28)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #B8860B | |
| RGB | rgb(184, 134, 11) | |
| HSL | hsl(43, 89%, 38%) | |
| HSV | hsv(43, 94%, 72%) | |
| CMYK approx. | cmyk(0, 27, 94, 28) | |
| CSS keyword | darkgoldenrod |
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#7399F7Analogous
#B28620#B8771ATriadic
#860BB8#0BB886Split complementary
#6891F6#3A63C8Using 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"