CSS Named Color
Copy-ready color values
HEX
#D2691ERGB
rgb(210, 105, 30)HSL
hsl(25, 75%, 47%)HSV
hsv(25, 86%, 82%)CMYK approx.
cmyk(0, 50, 86, 18)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #D2691E | |
| RGB | rgb(210, 105, 30) | |
| HSL | hsl(25, 75%, 47%) | |
| HSV | hsv(25, 86%, 82%) | |
| CMYK approx. | cmyk(0, 50, 86, 18) | |
| CSS keyword | chocolate |
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#5FAFE8Analogous
#C56934#D26027Triadic
#691ED2#1ED269Split complementary
#53A9E6#257BB9Using 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"