Material Design Palette

Copy-ready color values

HEX#114E7E
RGBrgb(17, 78, 126)
HSLhsl(206, 76%, 28%)
HSVhsv(206, 87%, 49%)
CMYK approx.cmyk(87, 38, 0, 51)

Color value table

FormatValueCopy
HEX#114E7E
RGBrgb(17, 78, 126)
HSLhsl(206, 76%, 28%)
HSVhsv(206, 87%, 49%)
CMYK approx.cmyk(87, 38, 0, 51)
CSS keywordmaterial-blue-100

Contrast and classification

DarkLightness8.70:1Contrast with white2.41:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#29608B

White 30%
#5883A5

White 70%
#B8CAD8

White 90%
#E7EDF2

Black 10%
#0F4671

Black 30%
#0C3758

Black 70%
#051726

Black 90%
#02080D

Harmony palettes

Complementary

#EEB181
#F2C49F

Analogous

#184E71
#115478

Triadic

#4E7E11
#7E114E

Split complementary

#F1BF98
#C3916A

Using Material Blue 100

Material Blue 100 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-100: #114e7e;
}

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

$material-blue-100: #114e7e;

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