Material Design Palette
Copy-ready color values
HEX
#5E6DC1RGB
rgb(94, 109, 193)HSL
hsl(231, 44%, 56%)HSV
hsv(231, 51%, 76%)CMYK approx.
cmyk(51, 44, 0, 24)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #5E6DC1 | |
| RGB | rgb(94, 109, 193) | |
| HSL | hsl(231, 44%, 56%) | |
| HSV | hsv(231, 51%, 76%) | |
| CMYK approx. | cmyk(51, 44, 0, 24) | |
| CSS keyword | material-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#B8AC6CAnalogous
#606DB5#5E77B7Triadic
#6DC15E#C15E6DSplit complementary
#B2A661#847833Using 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"