Material Design Palette
Copy-ready color values
HEX
#283474RGB
rgb(40, 52, 116)HSL
hsl(231, 49%, 31%)HSV
hsv(231, 66%, 45%)CMYK approx.
cmyk(66, 55, 0, 55)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #283474 | |
| RGB | rgb(40, 52, 116) | |
| HSL | hsl(231, 49%, 31%) | |
| HSV | hsv(231, 66%, 45%) | |
| CMYK approx. | cmyk(66, 55, 0, 55) | |
| CSS keyword | material-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#E1D7A7Analogous
#29346B#283C6CTriadic
#347428#742834Split complementary
#DED4A0#B0A672Using 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"