CSS Named Color
Copy-ready color values
HEX
#DEB887RGB
rgb(222, 184, 135)HSL
hsl(34, 57%, 70%)HSV
hsv(34, 39%, 87%)CMYK approx.
cmyk(0, 17, 39, 13)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #DEB887 | |
| RGB | rgb(222, 184, 135) | |
| HSL | hsl(34, 57%, 70%) | |
| HSV | hsv(34, 39%, 87%) | |
| CMYK approx. | cmyk(0, 17, 39, 13) | |
| CSS keyword | burlywood |
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#567398Analogous
#D9B891#DEB28DTriadic
#B887DE#87DEB8Split complementary
#496890#1B3A62Using 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"