Material Design Palette
Copy-ready color values
HEX
#607D8BRGB
rgb(96, 125, 139)HSL
hsl(200, 18%, 46%)HSV
hsv(200, 31%, 55%)CMYK approx.
cmyk(31, 10, 0, 45)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #607D8B | |
| RGB | rgb(96, 125, 139) | |
| HSL | hsl(200, 18%, 46%) | |
| HSV | hsv(200, 31%, 55%) | |
| CMYK approx. | cmyk(31, 10, 0, 45) | |
| CSS keyword | material-blue-gray-500 |
Contrast and classification
DarkLightness4.37:1Contrast with white4.80:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#708A97
White 30%#90A4AE
White 70%#CFD8DC
White 90%#EFF2F3
Black 10%#56717D
Black 30%#435861
Black 70%#1D262A
Black 90%#0A0D0E
Harmony palettes
Complementary
#9F8274#B6A095Analogous
#637D86#607F89Triadic
#7D8B60#8B607DSplit complementary
#B0998D#826B5FUsing Material Blue Gray 500
Material Blue Gray 500 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-500: #607d8b;
}
.button-primary {
background: var(--color-material-blue-gray-500);
color: #000000;
}
$material-blue-gray-500: #607d8b;
// Tailwind arbitrary value
class="bg-[#607d8b] text-white"