Material Design Palette
Copy-ready color values
HEX
#94CDF9RGB
rgb(148, 205, 249)HSL
hsl(206, 89%, 78%)HSV
hsv(206, 41%, 98%)CMYK approx.
cmyk(41, 18, 0, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #94CDF9 | |
| RGB | rgb(148, 205, 249) | |
| HSL | hsl(206, 89%, 78%) | |
| HSV | hsv(206, 41%, 98%) | |
| CMYK approx. | cmyk(41, 18, 0, 2) | |
| CSS keyword | material-blue-900 |
Contrast and classification
LightLightness1.70:1Contrast with white12.36:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#9FD2FA
White 30%#B4DCFB
White 70%#DFF0FD
White 90%#F4FAFE
Black 10%#85B9E0
Black 30%#6890AE
Black 70%#2C3E4B
Black 90%#0F1519
Harmony palettes
Complementary
#6B3206#8F6342Analogous
#9BCDED#94D2F4Triadic
#CDF994#F994CDSplit complementary
#865733#582905Using Material Blue 900
Material Blue 900 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-900: #94cdf9;
}
.button-primary {
background: var(--color-material-blue-900);
color: #000000;
}
$material-blue-900: #94cdf9;
// Tailwind arbitrary value
class="bg-[#94cdf9] text-white"