Material Design Palette

Copy-ready color values

HEX#212A5E
RGBrgb(33, 42, 94)
HSLhsl(231, 48%, 25%)
HSVhsv(231, 65%, 37%)
CMYK approx.cmyk(65, 55, 0, 63)

Color value table

FormatValueCopy
HEX#212A5E
RGBrgb(33, 42, 94)
HSLhsl(231, 48%, 25%)
HSVhsv(231, 65%, 37%)
CMYK approx.cmyk(65, 55, 0, 63)
CSS keywordmaterial-indigo-100

Contrast and classification

DarkLightness13.48:1Contrast with white1.56:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#373F6E

White 30%
#646A8E

White 70%
#BCBFCF

White 90%
#E9EAEF

Black 10%
#1E2655

Black 30%
#171D42

Black 70%
#0A0D1C

Black 90%
#030409

Harmony palettes

Complementary

#DED5A1
#E6DFB8

Analogous

#222A57
#213058

Triadic

#2A5E21
#5E212A

Split complementary

#E4DDB2
#B6AF84

Using Material Indigo 100

Material Indigo 100 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-100: #212a5e;
}

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

$material-indigo-100: #212a5e;

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