Material Design Palette

Copy-ready color values

HEX#F278A1
RGBrgb(242, 120, 161)
HSLhsl(340, 82%, 71%)
HSVhsv(340, 50%, 95%)
CMYK approx.cmyk(0, 50, 33, 5)

Color value table

FormatValueCopy
HEX#F278A1
RGBrgb(242, 120, 161)
HSLhsl(340, 82%, 71%)
HSVhsv(340, 50%, 95%)
CMYK approx.cmyk(0, 50, 33, 5)
CSS keywordmaterial-pink-800

Contrast and classification

LightLightness2.63:1Contrast with white7.98:1Contrast with blackMagenta / PurpleColor family

Shade and tint preview

White 10%
#F386AA

White 30%
#F6A1BD

White 70%
#FBD7E3

White 90%
#FEF2F6

Black 10%
#DA6C91

Black 30%
#A95471

Black 70%
#492430

Black 90%
#180C10

Harmony palettes

Complementary

#0D875E
#47A485

Analogous

#E378AB
#F27D9C

Triadic

#78A1F2
#A1F278

Split complementary

#399D7B
#0B6F4D

Using Material Pink 800

Material Pink 800 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-800: #f278a1;
}

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

$material-pink-800: #f278a1;

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