Material Design Palette
Copy-ready color values
HEX
#008FA1RGB
rgb(0, 143, 161)HSL
hsl(187, 100%, 32%)HSV
hsv(187, 100%, 63%)CMYK approx.
cmyk(100, 11, 0, 37)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #008FA1 | |
| RGB | rgb(0, 143, 161) | |
| HSL | hsl(187, 100%, 32%) | |
| HSV | hsv(187, 100%, 63%) | |
| CMYK approx. | cmyk(100, 11, 0, 37) | |
| CSS keyword | material-cyan-300 |
Contrast and classification
DarkLightness3.86:1Contrast with white5.44:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#1A9AAA
White 30%#4DB1BD
White 70%#B3DDE3
White 90%#E6F4F6
Black 10%#008191
Black 30%#006471
Black 70%#002B30
Black 90%#000E10
Harmony palettes
Complementary
#FF705E#FF9285Analogous
#118F8E#00919FTriadic
#8FA100#A1008FSplit complementary
#FF8A7B#D15C4DUsing Material Cyan 300
Material Cyan 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-cyan-300: #008fa1;
}
.button-primary {
background: var(--color-material-cyan-300);
color: #000000;
}
$material-cyan-300: #008fa1;
// Tailwind arbitrary value
class="bg-[#008fa1] text-white"