Material Design Palette

Copy-ready color values

HEX#3D5059
RGBrgb(61, 80, 89)
HSLhsl(199, 19%, 29%)
HSVhsv(199, 31%, 35%)
CMYK approx.cmyk(31, 10, 0, 65)

Color value table

FormatValueCopy
HEX#3D5059
RGBrgb(61, 80, 89)
HSLhsl(199, 19%, 29%)
HSVhsv(199, 31%, 35%)
CMYK approx.cmyk(31, 10, 0, 65)
CSS keywordmaterial-blue-gray-200

Contrast and classification

DarkLightness8.43:1Contrast with white2.49:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#50626A

White 30%
#77858B

White 70%
#C5CBCD

White 90%
#ECEEEE

Black 10%
#374850

Black 30%
#2B383E

Black 70%
#12181B

Black 90%
#060809

Harmony palettes

Complementary

#C2AFA6
#D1C2BB

Analogous

#3F5056
#3D5158

Triadic

#50593D
#593D50

Split complementary

#CDBDB6
#9F9088

Using Material Blue Gray 200

Material Blue Gray 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-blue-gray-200: #3d5059;
}

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

$material-blue-gray-200: #3d5059;

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