Material Design Palette
Copy-ready color values
HEX
#004E47RGB
rgb(0, 78, 71)HSL
hsl(175, 100%, 15%)HSV
hsv(175, 100%, 31%)CMYK approx.
cmyk(100, 0, 9, 69)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #004E47 | |
| RGB | rgb(0, 78, 71) | |
| HSL | hsl(175, 100%, 15%) | |
| HSV | hsv(175, 100%, 31%) | |
| CMYK approx. | cmyk(100, 0, 9, 69) | |
| CSS keyword | material-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#FFC4C9Analogous
#094E3E#004D48Triadic
#4E4700#47004ESplit complementary
#FFBFC5#D19197Using 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"