Material Design Palette
Copy-ready color values
HEX
#771E86RGB
rgb(119, 30, 134)HSL
hsl(291, 63%, 32%)HSV
hsv(291, 78%, 53%)CMYK approx.
cmyk(11, 78, 0, 47)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #771E86 | |
| RGB | rgb(119, 30, 134) | |
| HSL | hsl(291, 63%, 32%) | |
| HSV | hsv(291, 78%, 53%) | |
| CMYK approx. | cmyk(11, 78, 0, 47) | |
| CSS keyword | material-purple-300 |
Contrast and classification
DarkLightness9.07:1Contrast with white2.31:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#853592
White 30%#A062AA
White 70%#D6BCDB
White 90%#F1E9F3
Black 10%#6B1B79
Black 30%#53155E
Black 70%#240928
Black 90%#0C030D
Harmony palettes
Complementary
#88E179#A5E899Analogous
#6C1E84#772A7ATriadic
#1E8677#86771ESplit complementary
#9DE691#70B963Using Material Purple 300
Material Purple 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-purple-300: #771e86;
}
.button-primary {
background: var(--color-material-purple-300);
color: #ffffff;
}
$material-purple-300: #771e86;
// Tailwind arbitrary value
class="bg-[#771e86] text-white"