Material Design Palette
Copy-ready color values
HEX
#89229BRGB
rgb(137, 34, 155)HSL
hsl(291, 64%, 37%)HSV
hsv(291, 78%, 61%)CMYK approx.
cmyk(12, 78, 0, 39)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #89229B | |
| RGB | rgb(137, 34, 155) | |
| HSL | hsl(291, 64%, 37%) | |
| HSV | hsv(291, 78%, 61%) | |
| CMYK approx. | cmyk(12, 78, 0, 39) | |
| CSS keyword | material-purple-400 |
Contrast and classification
DarkLightness7.59:1Contrast with white2.77:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#9538A5
White 30%#AC64B9
White 70%#DCBDE1
White 90%#F3E9F5
Black 10%#7B1F8C
Black 30%#60186D
Black 70%#290A2F
Black 90%#0E0310
Harmony palettes
Complementary
#76DD64#97E589Analogous
#7D2299#89318CTriadic
#229B89#9B8922Split complementary
#8FE380#61B552Using Material Purple 400
Material Purple 400 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-400: #89229b;
}
.button-primary {
background: var(--color-material-purple-400);
color: #ffffff;
}
$material-purple-400: #89229b;
// Tailwind arbitrary value
class="bg-[#89229b] text-white"