Material Design Palette

Copy-ready color values

HEX#8DA1AB
RGBrgb(141, 161, 171)
HSLhsl(200, 15%, 61%)
HSVhsv(200, 18%, 67%)
CMYK approx.cmyk(18, 6, 0, 33)

Color value table

FormatValueCopy
HEX#8DA1AB
RGBrgb(141, 161, 171)
HSLhsl(200, 15%, 61%)
HSVhsv(200, 18%, 67%)
CMYK approx.cmyk(18, 6, 0, 33)
CSS keywordmaterial-blue-gray-700

Contrast and classification

LightLightness2.69:1Contrast with white7.82:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#98AAB3

White 30%
#AFBDC4

White 70%
#DDE3E6

White 90%
#F4F6F7

Black 10%
#7F919A

Black 30%
#637178

Black 70%
#2A3033

Black 90%
#0E1011

Harmony palettes

Complementary

#725E54
#94857D

Analogous

#8FA1A7
#8DA2AA

Triadic

#A1AB8D
#AB8DA1

Split complementary

#8B7B73
#5D4D45

Using Material Blue Gray 700

Material Blue Gray 700 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-700: #8da1ab;
}

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

$material-blue-gray-700: #8da1ab;

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