Material Design Palette

Copy-ready color values

HEX#A3D9D4
RGBrgb(163, 217, 212)
HSLhsl(174, 42%, 75%)
HSVhsv(174, 25%, 85%)
CMYK approx.cmyk(25, 0, 2, 15)

Color value table

FormatValueCopy
HEX#A3D9D4
RGBrgb(163, 217, 212)
HSLhsl(174, 42%, 75%)
HSVhsv(174, 25%, 85%)
CMYK approx.cmyk(25, 0, 2, 15)
CSS keywordmaterial-teal-1000

Contrast and classification

LightLightness1.56:1Contrast with white13.43:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#ACDDD8

White 30%
#BFE4E1

White 70%
#E3F4F2

White 90%
#F6FBFB

Black 10%
#93C3BF

Black 30%
#729894

Black 70%
#314140

Black 90%
#101615

Harmony palettes

Complementary

#5C262B
#835A5E

Analogous

#A9D9CE
#A3D8D5

Triadic

#D9D4A3
#D4A3D9

Split complementary

#794D51
#4B1F23

Using Material Teal 1000

Material Teal 1000 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-1000: #a3d9d4;
}

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

$material-teal-1000: #a3d9d4;

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