Material Design Palette

Copy-ready color values

HEX#66C0B8
RGBrgb(102, 192, 184)
HSLhsl(175, 42%, 58%)
HSVhsv(175, 47%, 75%)
CMYK approx.cmyk(47, 0, 4, 25)

Color value table

FormatValueCopy
HEX#66C0B8
RGBrgb(102, 192, 184)
HSLhsl(175, 42%, 58%)
HSVhsv(175, 47%, 75%)
CMYK approx.cmyk(47, 0, 4, 25)
CSS keywordmaterial-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
#B16D73

Analogous

#71C0AE
#66BFB9

Triadic

#C0B866
#B866C0

Split complementary

#AB6268
#7D343A

Using 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"