CSS Named Color
Copy-ready color values
HEX
#D2B48CRGB
rgb(210, 180, 140)HSL
hsl(34, 44%, 69%)HSV
hsv(34, 33%, 82%)CMYK approx.
cmyk(0, 14, 33, 18)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #D2B48C | |
| RGB | rgb(210, 180, 140) | |
| HSL | hsl(34, 44%, 69%) | |
| HSV | hsv(34, 33%, 82%) | |
| CMYK approx. | cmyk(0, 14, 33, 18) | |
| CSS keyword | tan |
Contrast and classification
LightLightness1.97:1Contrast with white10.65:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#D7BC98
White 30%#E0CBAF
White 70%#F2E9DD
White 90%#FBF8F4
Black 10%#BDA27E
Black 30%#937E62
Black 70%#3F362A
Black 90%#15120E
Harmony palettes
Complementary
#2D4B73#5F7695Analogous
#CEB494#D2AF91Triadic
#B48CD2#8CD2B4Split complementary
#536B8C#253E5EUsing Tan
Tan 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-tan: #d2b48c;
}
.button-primary {
background: var(--color-tan);
color: #000000;
}
$tan: #d2b48c;
// Tailwind arbitrary value
class="bg-[#d2b48c] text-white"