CSS Named Color

Copy-ready color values

HEX#D2691E
RGBrgb(210, 105, 30)
HSLhsl(25, 75%, 47%)
HSVhsv(25, 86%, 82%)
CMYK approx.cmyk(0, 50, 86, 18)

Color value table

FormatValueCopy
HEX#D2691E
RGBrgb(210, 105, 30)
HSLhsl(25, 75%, 47%)
HSVhsv(25, 86%, 82%)
CMYK approx.cmyk(0, 50, 86, 18)
CSS keywordchocolate

Contrast and classification

DarkLightness3.63:1Contrast with white5.78:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#D77835

White 30%
#E09662

White 70%
#F2D2BC

White 90%
#FBF0E9

Black 10%
#BD5F1B

Black 30%
#934A15

Black 70%
#3F2009

Black 90%
#150B03

Harmony palettes

Complementary

#2D96E1
#5FAFE8

Analogous

#C56934
#D26027

Triadic

#691ED2
#1ED269

Split complementary

#53A9E6
#257BB9

Using Chocolate

Chocolate 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-chocolate: #d2691e;
}

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

$chocolate: #d2691e;

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