Material Design Palette
Copy-ready color values
HEX
#114E7ERGB
rgb(17, 78, 126)HSL
hsl(206, 76%, 28%)HSV
hsv(206, 87%, 49%)CMYK approx.
cmyk(87, 38, 0, 51)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #114E7E | |
| RGB | rgb(17, 78, 126) | |
| HSL | hsl(206, 76%, 28%) | |
| HSV | hsv(206, 87%, 49%) | |
| CMYK approx. | cmyk(87, 38, 0, 51) | |
| CSS keyword | material-blue-100 |
Contrast and classification
DarkLightness8.70:1Contrast with white2.41:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#29608B
White 30%#5883A5
White 70%#B8CAD8
White 90%#E7EDF2
Black 10%#0F4671
Black 30%#0C3758
Black 70%#051726
Black 90%#02080D
Harmony palettes
Complementary
#EEB181#F2C49FAnalogous
#184E71#115478Triadic
#4E7E11#7E114ESplit complementary
#F1BF98#C3916AUsing Material Blue 100
Material Blue 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-100: #114e7e;
}
.button-primary {
background: var(--color-material-blue-100);
color: #ffffff;
}
$material-blue-100: #114e7e;
// Tailwind arbitrary value
class="bg-[#114e7e] text-white"