Material Design Palette
Copy-ready color values
HEX
#66C0B8RGB
rgb(102, 192, 184)HSL
hsl(175, 42%, 58%)HSV
hsv(175, 47%, 75%)CMYK approx.
cmyk(47, 0, 4, 25)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #66C0B8 | |
| RGB | rgb(102, 192, 184) | |
| HSL | hsl(175, 42%, 58%) | |
| HSV | hsv(175, 47%, 75%) | |
| CMYK approx. | cmyk(47, 0, 4, 25) | |
| CSS keyword | material-teal-800 |
Contrast and classification
LightLightness2.14:1Contrast with white9.80:1Contrast with blackGreen / TealColor family
Shade and tint preview
White 10%#75C6BF
White 30%#94D3CD
White 70%#D1ECEA
White 90%#F0F9F8
Black 10%#5CADA6
Black 30%#478681
Black 70%#1F3A37
Black 90%#0A1312
Harmony palettes
Complementary
#993F47#B16D73Analogous
#71C0AE#66BFB9Triadic
#C0B866#B866C0Split complementary
#AB6268#7D343AUsing Material Teal 800
Material Teal 800 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-800: #66c0b8;
}
.button-primary {
background: var(--color-material-teal-800);
color: #000000;
}
$material-teal-800: #66c0b8;
// Tailwind arbitrary value
class="bg-[#66c0b8] text-white"