CSS Named Color

Copy-ready color values

HEX#A0522D
RGBrgb(160, 82, 45)
HSLhsl(19, 56%, 40%)
HSVhsv(19, 72%, 63%)
CMYK approx.cmyk(0, 49, 72, 37)

Color value table

FormatValueCopy
HEX#A0522D
RGBrgb(160, 82, 45)
HSLhsl(19, 56%, 40%)
HSVhsv(19, 72%, 63%)
CMYK approx.cmyk(0, 49, 72, 37)
CSS keywordsienna

Contrast and classification

DarkLightness5.62:1Contrast with white3.74:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#AA6342

White 30%
#BD866C

White 70%
#E3CBC0

White 90%
#F6EEEA

Black 10%
#904A29

Black 30%
#703920

Black 70%
#30190E

Black 90%
#100805

Harmony palettes

Complementary

#5FADD2
#85C1DD

Analogous

#97523B
#A04E31

Triadic

#522DA0
#2DA052

Split complementary

#7CBCDA
#4E8EAC

Using Sienna

Sienna 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-sienna: #a0522d;
}

.button-primary {
  background: var(--color-sienna);
  color: #ffffff;
}

$sienna: #a0522d;

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