Material Design Palette
Copy-ready color values
HEX
#47CFE0RGB
rgb(71, 207, 224)HSL
hsl(187, 71%, 58%)HSV
hsv(187, 68%, 88%)CMYK approx.
cmyk(68, 8, 0, 12)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #47CFE0 | |
| RGB | rgb(71, 207, 224) | |
| HSL | hsl(187, 71%, 58%) | |
| HSV | hsv(187, 68%, 88%) | |
| CMYK approx. | cmyk(68, 8, 0, 12) | |
| CSS keyword | material-cyan-700 |
Contrast and classification
LightLightness1.86:1Contrast with white11.27:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#59D4E3
White 30%#7EDDE9
White 70%#C8F1F6
White 90%#EDFAFC
Black 10%#40BACA
Black 30%#32919D
Black 70%#153E43
Black 90%#071516
Harmony palettes
Complementary
#B8301F#C96255Analogous
#57CFCE#47D1DETriadic
#CFE047#E047CFSplit complementary
#C55547#972719Using Material Cyan 700
Material Cyan 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-cyan-700: #47cfe0;
}
.button-primary {
background: var(--color-material-cyan-700);
color: #000000;
}
$material-cyan-700: #47cfe0;
// Tailwind arbitrary value
class="bg-[#47cfe0] text-white"