Material Design Palette

Copy-ready color values

HEX#B3C1C7
RGBrgb(179, 193, 199)
HSLhsl(198, 15%, 74%)
HSVhsv(198, 10%, 78%)
CMYK approx.cmyk(10, 3, 0, 22)

Color value table

FormatValueCopy
HEX#B3C1C7
RGBrgb(179, 193, 199)
HSLhsl(198, 15%, 74%)
HSVhsv(198, 10%, 78%)
CMYK approx.cmyk(10, 3, 0, 22)
CSS keywordmaterial-blue-gray-900

Contrast and classification

LightLightness1.85:1Contrast with white11.37:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#BBC7CD

White 30%
#CAD4D8

White 70%
#E8ECEE

White 90%
#F7F9F9

Black 10%
#A1AEB3

Black 30%
#7D878B

Black 70%
#363A3C

Black 90%
#121314

Harmony palettes

Complementary

#4C3E38
#776C68

Analogous

#B5C1C5
#B3C2C6

Triadic

#C1C7B3
#C7B3C1

Split complementary

#6C615C
#3E332E

Using Material Blue Gray 900

Material Blue Gray 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-blue-gray-900: #b3c1c7;
}

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

$material-blue-gray-900: #b3c1c7;

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