Material Design Palette
Copy-ready color values
HEX
#C47DD0RGB
rgb(196, 125, 208)HSL
hsl(291, 47%, 65%)HSV
hsv(291, 40%, 82%)CMYK approx.
cmyk(6, 40, 0, 18)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #C47DD0 | |
| RGB | rgb(196, 125, 208) | |
| HSL | hsl(291, 47%, 65%) | |
| HSV | hsv(291, 40%, 82%) | |
| CMYK approx. | cmyk(6, 40, 0, 18) | |
| CSS keyword | material-purple-800 |
Contrast and classification
LightLightness2.92:1Contrast with white7.19:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#CA8AD5
White 30%#D6A4DE
White 70%#EDD8F1
White 90%#F9F2FA
Black 10%#B071BB
Black 30%#895892
Black 70%#3B263E
Black 90%#140D15
Harmony palettes
Complementary
#3B822F#6AA061Analogous
#BB7DCF#C487C6Triadic
#7DD0C4#D0C47DSplit complementary
#5E9954#306B27Using Material Purple 800
Material Purple 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-purple-800: #c47dd0;
}
.button-primary {
background: var(--color-material-purple-800);
color: #000000;
}
$material-purple-800: #c47dd0;
// Tailwind arbitrary value
class="bg-[#c47dd0] text-white"