Material Design Palette

Copy-ready color values

HEX#47B3A9
RGBrgb(71, 179, 169)
HSLhsl(174, 43%, 49%)
HSVhsv(174, 60%, 70%)
CMYK approx.cmyk(60, 0, 6, 30)

Color value table

FormatValueCopy
HEX#47B3A9
RGBrgb(71, 179, 169)
HSLhsl(174, 43%, 49%)
HSVhsv(174, 60%, 70%)
CMYK approx.cmyk(60, 0, 6, 30)
CSS keywordmaterial-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
#C9777F

Analogous

#54B39D
#47B2AA

Triadic

#B3A947
#A947B3

Split complementary

#C56C74
#973E47

Using 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"