Material Design Palette
Copy-ready color values
HEX
#5FB3F6RGB
rgb(95, 179, 246)HSL
hsl(207, 89%, 67%)HSV
hsv(207, 61%, 96%)CMYK approx.
cmyk(61, 27, 0, 4)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #5FB3F6 | |
| RGB | rgb(95, 179, 246) | |
| HSL | hsl(207, 89%, 67%) | |
| HSV | hsv(207, 61%, 96%) | |
| CMYK approx. | cmyk(61, 27, 0, 4) | |
| CSS keyword | material-blue-700 |
Contrast and classification
LightLightness2.27:1Contrast with white9.27:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#6FBBF7
White 30%#8FCAF9
White 70%#CFE8FC
White 90%#EFF7FE
Black 10%#56A1DD
Black 30%#437DAC
Black 70%#1D364A
Black 90%#0A1219
Harmony palettes
Complementary
#A04C09#B77744Analogous
#69B3E4#5FBBEETriadic
#B3F65F#F65FB3Split complementary
#B16C35#833E07Using Material Blue 700
Material Blue 700 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-700: #5fb3f6;
}
.button-primary {
background: var(--color-material-blue-700);
color: #000000;
}
$material-blue-700: #5fb3f6;
// Tailwind arbitrary value
class="bg-[#5fb3f6] text-white"