Material Design Palette

Copy-ready color values

HEX#15609C
RGBrgb(21, 96, 156)
HSLhsl(207, 76%, 35%)
HSVhsv(207, 87%, 61%)
CMYK approx.cmyk(87, 38, 0, 39)

Color value table

FormatValueCopy
HEX#15609C
RGBrgb(21, 96, 156)
HSLhsl(207, 76%, 35%)
HSVhsv(207, 87%, 61%)
CMYK approx.cmyk(87, 38, 0, 39)
CSS keywordmaterial-blue-200

Contrast and classification

DarkLightness6.59:1Contrast with white3.19:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#2C70A6

White 30%
#5B90BA

White 70%
#B9CFE1

White 90%
#E8EFF5

Black 10%
#13568C

Black 30%
#0F436D

Black 70%
#061D2F

Black 90%
#020A10

Harmony palettes

Complementary

#EA9F63
#EFB688

Analogous

#1E608C
#156795

Triadic

#609C15
#9C1560

Split complementary

#EEB07F
#C08251

Using Material Blue 200

Material Blue 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-200: #15609c;
}

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

$material-blue-200: #15609c;

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