Material Design Palette
Copy-ready color values
HEX
#009688RGB
rgb(0, 150, 136)HSL
hsl(174, 100%, 29%)HSV
hsv(174, 100%, 59%)CMYK approx.
cmyk(100, 0, 9, 41)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #009688 | |
| RGB | rgb(0, 150, 136) | |
| HSL | hsl(174, 100%, 29%) | |
| HSV | hsv(174, 100%, 59%) | |
| CMYK approx. | cmyk(100, 0, 9, 41) | |
| CSS keyword | material-teal-500 |
Contrast and classification
DarkLightness3.67:1Contrast with white5.72:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#1AA194
White 30%#4DB6AC
White 70%#B3E0DB
White 90%#E6F5F3
Black 10%#00877A
Black 30%#00695F
Black 70%#002D29
Black 90%#000F0E
Harmony palettes
Complementary
#FF6977#FF8D98Analogous
#129678#00948ATriadic
#968800#880096Split complementary
#FF848F#D15662Using Material Teal 500
Material Teal 500 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-500: #009688;
}
.button-primary {
background: var(--color-material-teal-500);
color: #000000;
}
$material-teal-500: #009688;
// Tailwind arbitrary value
class="bg-[#009688] text-white"