Material Design Palette

Copy-ready color values

HEX#1D84D6
RGBrgb(29, 132, 214)
HSLhsl(207, 76%, 48%)
HSVhsv(207, 86%, 84%)
CMYK approx.cmyk(86, 38, 0, 16)

Color value table

FormatValueCopy
HEX#1D84D6
RGBrgb(29, 132, 214)
HSLhsl(207, 76%, 48%)
HSVhsv(207, 86%, 84%)
CMYK approx.cmyk(86, 38, 0, 16)
CSS keywordmaterial-blue-400

Contrast and classification

DarkLightness3.94:1Contrast with white5.32:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#3490DA

White 30%
#61A9E2

White 70%
#BBDAF3

White 90%
#E8F3FB

Black 10%
#1A77C1

Black 30%
#145C96

Black 70%
#092840

Black 90%
#030D15

Harmony palettes

Complementary

#E27B29
#E99B5C

Analogous

#2984C0
#1D8ECC

Triadic

#84D61D
#D61D84

Split complementary

#E79350
#B96522

Using Material Blue 400

Material Blue 400 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-400: #1d84d6;
}

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

$material-blue-400: #1d84d6;

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