CSS Named Color

Copy-ready color values

HEX#DEB887
RGBrgb(222, 184, 135)
HSLhsl(34, 57%, 70%)
HSVhsv(34, 39%, 87%)
CMYK approx.cmyk(0, 17, 39, 13)

Color value table

FormatValueCopy
HEX#DEB887
RGBrgb(222, 184, 135)
HSLhsl(34, 57%, 70%)
HSVhsv(34, 39%, 87%)
CMYK approx.cmyk(0, 17, 39, 13)
CSS keywordburlywood

Contrast and classification

LightLightness1.86:1Contrast with white11.31:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#E1BF93

White 30%
#E8CDAB

White 70%
#F5EADB

White 90%
#FCF8F3

Black 10%
#C8A67A

Black 30%
#9B815F

Black 70%
#433729

Black 90%
#16120E

Harmony palettes

Complementary

#214778
#567398

Analogous

#D9B891
#DEB28D

Triadic

#B887DE
#87DEB8

Split complementary

#496890
#1B3A62

Using Burlywood

Burlywood 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-burlywood: #deb887;
}

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

$burlywood: #deb887;

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