Material Design Palette
Copy-ready color values
HEX
#51145CRGB
rgb(81, 20, 92)HSL
hsl(291, 64%, 22%)HSV
hsv(291, 78%, 36%)CMYK approx.
cmyk(12, 78, 0, 64)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #51145C | |
| RGB | rgb(81, 20, 92) | |
| HSL | hsl(291, 64%, 22%) | |
| HSV | hsv(291, 78%, 36%) | |
| CMYK approx. | cmyk(12, 78, 0, 64) | |
| CSS keyword | material-purple-100 |
Contrast and classification
DarkLightness13.09:1Contrast with white1.60:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#622C6C
White 30%#855B8D
White 70%#CBB9CE
White 90%#EEE8EF
Black 10%#491253
Black 30%#390E40
Black 70%#18061C
Black 90%#080209
Harmony palettes
Complementary
#AEEBA3#C1F0B9Analogous
#4A145B#511D53Triadic
#145C51#5C5114Split complementary
#BDEFB4#8FC186Using Material Purple 100
Material Purple 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-purple-100: #51145c;
}
.button-primary {
background: var(--color-material-purple-100);
color: #ffffff;
}
$material-purple-100: #51145c;
// Tailwind arbitrary value
class="bg-[#51145c] text-white"