CSS Named Color
Copy-ready color values
HEX
#CD853FRGB
rgb(205, 133, 63)HSL
hsl(30, 59%, 53%)HSV
hsv(30, 69%, 80%)CMYK approx.
cmyk(0, 35, 69, 20)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #CD853F | |
| RGB | rgb(205, 133, 63) | |
| HSL | hsl(30, 59%, 53%) | |
| HSV | hsv(30, 69%, 80%) | |
| CMYK approx. | cmyk(0, 35, 69, 20) | |
| CSS keyword | peru |
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#639ACFAnalogous
#C48550#CD7D47Triadic
#853FCD#3FCD85Split complementary
#5792CB#29649DUsing 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"