CSS Named Color

Copy-ready color values

HEX#CD5C5C
RGBrgb(205, 92, 92)
HSLhsl(0, 53%, 58%)
HSVhsv(0, 55%, 80%)
CMYK approx.cmyk(0, 55, 55, 20)

Color value table

FormatValueCopy
HEX#CD5C5C
RGBrgb(205, 92, 92)
HSLhsl(0, 53%, 58%)
HSVhsv(0, 55%, 80%)
CMYK approx.cmyk(0, 55, 55, 20)
CSS keywordindianred

Contrast and classification

LightLightness3.98:1Contrast with white5.28:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#D26C6C

White 30%
#DC8D8D

White 70%
#F0CECE

White 90%
#FAEFEF

Black 10%
#B95353

Black 30%
#904040

Black 70%
#3E1C1C

Black 90%
#150909

Harmony palettes

Complementary

#32A3A3
#63B9B9

Analogous

#BF5C6A
#CD5C5C

Triadic

#5C5CCD
#5CCD5C

Split complementary

#57B4B4
#298686

Using Indianred

Indianred 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-indianred: #cd5c5c;
}

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

$indianred: #cd5c5c;

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