Material Design Palette
Copy-ready color values
HEX
#47B3A9RGB
rgb(71, 179, 169)HSL
hsl(174, 43%, 49%)HSV
hsv(174, 60%, 70%)CMYK approx.
cmyk(60, 0, 6, 30)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #47B3A9 | |
| RGB | rgb(71, 179, 169) | |
| HSL | hsl(174, 43%, 49%) | |
| HSV | hsv(174, 60%, 70%) | |
| CMYK approx. | cmyk(60, 0, 6, 30) | |
| CSS keyword | material-teal-700 |
Contrast and classification
DarkLightness2.53:1Contrast with white8.29:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#59BBB2
White 30%#7ECAC3
White 70%#C8E8E5
White 90%#EDF7F6
Black 10%#40A198
Black 30%#327D76
Black 70%#153633
Black 90%#071211
Harmony palettes
Complementary
#B84C56#C9777FAnalogous
#54B39D#47B2AATriadic
#B3A947#A947B3Split complementary
#C56C74#973E47Using Material Teal 700
Material Teal 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-teal-700: #47b3a9;
}
.button-primary {
background: var(--color-material-teal-700);
color: #000000;
}
$material-teal-700: #47b3a9;
// Tailwind arbitrary value
class="bg-[#47b3a9] text-white"