Material Design Palette
Copy-ready color values
HEX
#A3ABDBRGB
rgb(163, 171, 219)HSL
hsl(231, 44%, 75%)HSV
hsv(231, 26%, 86%)CMYK approx.
cmyk(26, 22, 0, 14)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A3ABDB | |
| RGB | rgb(163, 171, 219) | |
| HSL | hsl(231, 44%, 75%) | |
| HSV | hsv(231, 26%, 86%) | |
| CMYK approx. | cmyk(26, 22, 0, 14) | |
| CSS keyword | material-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#837D59Analogous
#A4ABD4#A3B1D5Triadic
#ABDBA3#DBA3ABSplit complementary
#79734B#4B451EUsing 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"