Material Design Palette

Copy-ready color values

HEX#283474
RGBrgb(40, 52, 116)
HSLhsl(231, 49%, 31%)
HSVhsv(231, 66%, 45%)
CMYK approx.cmyk(66, 55, 0, 55)

Color value table

FormatValueCopy
HEX#283474
RGBrgb(40, 52, 116)
HSLhsl(231, 49%, 31%)
HSVhsv(231, 66%, 45%)
CMYK approx.cmyk(66, 55, 0, 55)
CSS keywordmaterial-indigo-200

Contrast and classification

DarkLightness11.45:1Contrast with white1.83:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#3E4882

White 30%
#69719E

White 70%
#BFC2D5

White 90%
#EAEBF1

Black 10%
#242F68

Black 30%
#1C2451

Black 70%
#0C1023

Black 90%
#04050C

Harmony palettes

Complementary

#D7CB8B
#E1D7A7

Analogous

#29346B
#283C6C

Triadic

#347428
#742834

Split complementary

#DED4A0
#B0A672

Using Material Indigo 200

Material Indigo 200 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-200: #283474;
}

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

$material-indigo-200: #283474;

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