Material Design Palette
Copy-ready color values
HEX
#29C7DBRGB
rgb(41, 199, 219)HSL
hsl(187, 71%, 51%)HSV
hsv(187, 81%, 86%)CMYK approx.
cmyk(81, 9, 0, 14)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #29C7DB | |
| RGB | rgb(41, 199, 219) | |
| HSL | hsl(187, 71%, 51%) | |
| HSV | hsv(187, 81%, 86%) | |
| CMYK approx. | cmyk(81, 9, 0, 14) | |
| CSS keyword | material-cyan-600 |
Contrast and classification
DarkLightness2.04:1Contrast with white10.29:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#3ECDDF
White 30%#69D8E6
White 70%#BFEEF4
White 90%#EAF9FB
Black 10%#25B3C5
Black 30%#1D8B99
Black 70%#0C3C42
Black 90%#041416
Harmony palettes
Complementary
#D63824#E06859Analogous
#3CC7C6#29C9D9Triadic
#C7DB29#DB29C7Split complementary
#DD5C4B#AF2E1EUsing Material Cyan 600
Material Cyan 600 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-600: #29c7db;
}
.button-primary {
background: var(--color-material-cyan-600);
color: #000000;
}
$material-cyan-600: #29c7db;
// Tailwind arbitrary value
class="bg-[#29c7db] text-white"