Material Design Palette
Copy-ready color values
HEX
#324148RGB
rgb(50, 65, 72)HSL
hsl(199, 18%, 24%)HSV
hsv(199, 31%, 28%)CMYK approx.
cmyk(31, 10, 0, 72)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #324148 | |
| RGB | rgb(50, 65, 72) | |
| HSL | hsl(199, 18%, 24%) | |
| HSV | hsv(199, 31%, 28%) | |
| CMYK approx. | cmyk(31, 10, 0, 72) | |
| CSS keyword | material-blue-gray-100 |
Contrast and classification
DarkLightness10.58:1Contrast with white1.99:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#47545A
White 30%#707A7F
White 70%#C2C6C8
White 90%#EBECED
Black 10%#2D3B41
Black 30%#232E32
Black 70%#0F1416
Black 90%#050707
Harmony palettes
Complementary
#CDBEB7#D9CEC8Analogous
#344145#324247Triadic
#414832#483241Split complementary
#D6CAC4#A89C96Using Material Blue Gray 100
Material Blue Gray 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-blue-gray-100: #324148;
}
.button-primary {
background: var(--color-material-blue-gray-100);
color: #ffffff;
}
$material-blue-gray-100: #324148;
// Tailwind arbitrary value
class="bg-[#324148] text-white"