Material Design Palette

Copy-ready color values

HEX#006057
RGBrgb(0, 96, 87)
HSLhsl(174, 100%, 19%)
HSVhsv(174, 100%, 38%)
CMYK approx.cmyk(100, 0, 9, 62)

Color value table

FormatValueCopy
HEX#006057
RGBrgb(0, 96, 87)
HSLhsl(174, 100%, 19%)
HSVhsv(174, 100%, 38%)
CMYK approx.cmyk(100, 0, 9, 62)
CSS keywordmaterial-teal-200

Contrast and classification

DarkLightness7.47:1Contrast with white2.81:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A7068

White 30%
#4D9089

White 70%
#B3CFCD

White 90%
#E6EFEE

Black 10%
#00564E

Black 30%
#00433D

Black 70%
#001D1A

Black 90%
#000A09

Harmony palettes

Complementary

#FF9FA8
#FFB6BD

Analogous

#0C604D
#005F58

Triadic

#605700
#570060

Split complementary

#FFB0B8
#D1828A

Using Material Teal 200

Material Teal 200 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-200: #006057;
}

.button-primary {
  background: var(--color-material-teal-200);
  color: #ffffff;
}

$material-teal-200: #006057;

// Tailwind arbitrary value
class="bg-[#006057] text-white"