CSS Named Color

Copy-ready color values

HEX#CD853F
RGBrgb(205, 133, 63)
HSLhsl(30, 59%, 53%)
HSVhsv(30, 69%, 80%)
CMYK approx.cmyk(0, 35, 69, 20)

Color value table

FormatValueCopy
HEX#CD853F
RGBrgb(205, 133, 63)
HSLhsl(30, 59%, 53%)
HSVhsv(30, 69%, 80%)
CMYK approx.cmyk(0, 35, 69, 20)
CSS keywordperu

Contrast and classification

DarkLightness2.99:1Contrast with white7.02:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#D29152

White 30%
#DCAA79

White 70%
#F0DAC5

White 90%
#FAF3EC

Black 10%
#B97839

Black 30%
#905D2C

Black 70%
#3E2813

Black 90%
#150D06

Harmony palettes

Complementary

#327AC0
#639ACF

Analogous

#C48550
#CD7D47

Triadic

#853FCD
#3FCD85

Split complementary

#5792CB
#29649D

Using Peru

Peru 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-peru: #cd853f;
}

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

$peru: #cd853f;

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