Material Design Palette
Copy-ready color values
HEX
#1972B9RGB
rgb(25, 114, 185)HSL
hsl(207, 76%, 41%)HSV
hsv(207, 86%, 73%)CMYK approx.
cmyk(86, 38, 0, 27)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #1972B9 | |
| RGB | rgb(25, 114, 185) | |
| HSL | hsl(207, 76%, 41%) | |
| HSV | hsv(207, 86%, 73%) | |
| CMYK approx. | cmyk(86, 38, 0, 27) | |
| CSS keyword | material-blue-300 |
Contrast and classification
DarkLightness5.06:1Contrast with white4.15:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#3080C0
White 30%#5E9CCE
White 70%#BAD5EA
White 90%#E8F1F8
Black 10%#1767A7
Black 30%#125082
Black 70%#082238
Black 90%#030B13
Harmony palettes
Complementary
#E68D46#ECA872Analogous
#2472A6#197BB0Triadic
#72B919#B91972Split complementary
#EBA267#BD7439Using Material Blue 300
Material Blue 300 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-300: #1972b9;
}
.button-primary {
background: var(--color-material-blue-300);
color: #ffffff;
}
$material-blue-300: #1972b9;
// Tailwind arbitrary value
class="bg-[#1972b9] text-white"