Material Design Palette

Copy-ready color values

HEX#B1174B
RGBrgb(177, 23, 75)
HSLhsl(340, 77%, 39%)
HSVhsv(340, 87%, 69%)
CMYK approx.cmyk(0, 87, 58, 31)

Color value table

FormatValueCopy
HEX#B1174B
RGBrgb(177, 23, 75)
HSLhsl(340, 77%, 39%)
HSVhsv(340, 87%, 69%)
CMYK approx.cmyk(0, 87, 58, 31)
CSS keywordmaterial-pink-300

Contrast and classification

DarkLightness6.79:1Contrast with white3.09:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#B92E5D

White 30%
#C85D81

White 70%
#E8B9C9

White 90%
#F7E8ED

Black 10%
#9F1544

Black 30%
#7C1035

Black 70%
#350717

Black 90%
#120208

Harmony palettes

Complementary

#4EE8B4
#78EEC6

Analogous

#9F1757
#B11D45

Triadic

#174BB1
#4BB117

Split complementary

#6EECC2
#40BE94

Using Material Pink 300

Material Pink 300 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-pink-300: #b1174b;
}

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

$material-pink-300: #b1174b;

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