Material Design Palette

Copy-ready color values

HEX#3F51B5
RGBrgb(63, 81, 181)
HSLhsl(231, 48%, 48%)
HSVhsv(231, 65%, 71%)
CMYK approx.cmyk(65, 55, 0, 29)

Color value table

FormatValueCopy
HEX#3F51B5
RGBrgb(63, 81, 181)
HSLhsl(231, 48%, 48%)
HSVhsv(231, 65%, 71%)
CMYK approx.cmyk(65, 55, 0, 29)
CSS keywordmaterial-indigo-500

Contrast and classification

DarkLightness6.87:1Contrast with white3.06:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#5262BC

White 30%
#7985CB

White 70%
#C5CBE9

White 90%
#ECEEF8

Black 10%
#3949A3

Black 30%
#2C397F

Black 70%
#131836

Black 90%
#060812

Harmony palettes

Complementary

#C0AE4A
#CFC175

Analogous

#4151A7
#3F5DA9

Triadic

#51B53F
#B53F51

Split complementary

#CBBD6B
#9D8F3D

Using Material Indigo 500

Material Indigo 500 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-500: #3f51b5;
}

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

$material-indigo-500: #3f51b5;

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