Material Design Palette

Copy-ready color values

HEX#5E6DC1
RGBrgb(94, 109, 193)
HSLhsl(231, 44%, 56%)
HSVhsv(231, 51%, 76%)
CMYK approx.cmyk(51, 44, 0, 24)

Color value table

FormatValueCopy
HEX#5E6DC1
RGBrgb(94, 109, 193)
HSLhsl(231, 44%, 56%)
HSVhsv(231, 51%, 76%)
CMYK approx.cmyk(51, 44, 0, 24)
CSS keywordmaterial-indigo-600

Contrast and classification

LightLightness4.74:1Contrast with white4.43:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#6E7CC7

White 30%
#8E99D4

White 70%
#CFD3EC

White 90%
#EFF0F9

Black 10%
#5562AE

Black 30%
#424C87

Black 70%
#1C213A

Black 90%
#090B13

Harmony palettes

Complementary

#A1923E
#B8AC6C

Analogous

#606DB5
#5E77B7

Triadic

#6DC15E
#C15E6D

Split complementary

#B2A661
#847833

Using Material Indigo 600

Material Indigo 600 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-material-indigo-600: #5e6dc1;
}

.button-primary {
  background: var(--color-material-indigo-600);
  color: #ffffff;
}

$material-indigo-600: #5e6dc1;

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