Material Design Palette
Copy-ready color values
HEX
#AC4ABDRGB
rgb(172, 74, 189)HSL
hsl(291, 47%, 52%)HSV
hsv(291, 61%, 74%)CMYK approx.
cmyk(9, 61, 0, 26)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #AC4ABD | |
| RGB | rgb(172, 74, 189) | |
| HSL | hsl(291, 47%, 52%) | |
| HSV | hsv(291, 61%, 74%) | |
| CMYK approx. | cmyk(9, 61, 0, 26) | |
| CSS keyword | material-purple-600 |
Contrast and classification
DarkLightness4.70:1Contrast with white4.47:1Contrast with blackPurple / BlueColor family
Shade and tint preview
White 10%#B45CC4
White 30%#C580D1
White 70%#E6C9EB
White 90%#F7EDF8
Black 10%#9B43AA
Black 30%#783484
Black 70%#341639
Black 90%#110713
Harmony palettes
Complementary
#53B542#7CC76FAnalogous
#A04ABB#AC58AFTriadic
#4ABDAC#BDAC4ASplit complementary
#72C264#449436Using Material Purple 600
Material Purple 600 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-600: #ac4abd;
}
.button-primary {
background: var(--color-material-purple-600);
color: #ffffff;
}
$material-purple-600: #ac4abd;
// Tailwind arbitrary value
class="bg-[#ac4abd] text-white"