Material Design Palette

Copy-ready color values

HEX#A3ABDB
RGBrgb(163, 171, 219)
HSLhsl(231, 44%, 75%)
HSVhsv(231, 26%, 86%)
CMYK approx.cmyk(26, 22, 0, 14)

Color value table

FormatValueCopy
HEX#A3ABDB
RGBrgb(163, 171, 219)
HSLhsl(231, 44%, 75%)
HSVhsv(231, 26%, 86%)
CMYK approx.cmyk(26, 22, 0, 14)
CSS keywordmaterial-indigo-900

Contrast and classification

LightLightness2.23:1Contrast with white9.41:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#ACB3DF

White 30%
#BFC4E6

White 70%
#E3E6F4

White 90%
#F6F7FB

Black 10%
#939AC5

Black 30%
#727899

Black 70%
#313342

Black 90%
#101116

Harmony palettes

Complementary

#5C5424
#837D59

Analogous

#A4ABD4
#A3B1D5

Triadic

#ABDBA3
#DBA3AB

Split complementary

#79734B
#4B451E

Using Material Indigo 900

Material Indigo 900 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-900: #a3abdb;
}

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

$material-indigo-900: #a3abdb;

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