Material Design Palette

Copy-ready color values

HEX#004E47
RGBrgb(0, 78, 71)
HSLhsl(175, 100%, 15%)
HSVhsv(175, 100%, 31%)
CMYK approx.cmyk(100, 0, 9, 69)

Color value table

FormatValueCopy
HEX#004E47
RGBrgb(0, 78, 71)
HSLhsl(175, 100%, 15%)
HSVhsv(175, 100%, 31%)
CMYK approx.cmyk(100, 0, 9, 69)
CSS keywordmaterial-teal-100

Contrast and classification

DarkLightness9.63:1Contrast with white2.18:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A6059

White 30%
#4D837E

White 70%
#B3CAC8

White 90%
#E6EDED

Black 10%
#004640

Black 30%
#003732

Black 70%
#001715

Black 90%
#000807

Harmony palettes

Complementary

#FFB1B8
#FFC4C9

Analogous

#094E3E
#004D48

Triadic

#4E4700
#47004E

Split complementary

#FFBFC5
#D19197

Using Material Teal 100

Material Teal 100 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-100: #004e47;
}

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

$material-teal-100: #004e47;

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