Material Design Palette
Copy-ready color values
HEX
#AFD9FBRGB
rgb(175, 217, 251)HSL
hsl(207, 90%, 84%)HSV
hsv(207, 30%, 98%)CMYK approx.
cmyk(30, 14, 0, 2)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #AFD9FB | |
| RGB | rgb(175, 217, 251) | |
| HSL | hsl(207, 90%, 84%) | |
| HSV | hsv(207, 30%, 98%) | |
| CMYK approx. | cmyk(30, 14, 0, 2) | |
| CSS keyword | material-blue-1000 |
Contrast and classification
LightLightness1.49:1Contrast with white14.14:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#B7DDFB
White 30%#C7E4FC
White 70%#E7F4FE
White 90%#F7FBFF
Black 10%#9EC3E2
Black 30%#7B98B0
Black 70%#35414B
Black 90%#121619
Harmony palettes
Complementary
#502604#7A5A40Analogous
#B4D9F2#AFDDF7Triadic
#D9FBAF#FBAFD9Split complementary
#704D31#421F03Using Material Blue 1000
Material Blue 1000 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-1000: #afd9fb;
}
.button-primary {
background: var(--color-material-blue-1000);
color: #000000;
}
$material-blue-1000: #afd9fb;
// Tailwind arbitrary value
class="bg-[#afd9fb] text-white"