Material Design Palette
Copy-ready color values
HEX
#A3D9D4RGB
rgb(163, 217, 212)HSL
hsl(174, 42%, 75%)HSV
hsv(174, 25%, 85%)CMYK approx.
cmyk(25, 0, 2, 15)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A3D9D4 | |
| RGB | rgb(163, 217, 212) | |
| HSL | hsl(174, 42%, 75%) | |
| HSV | hsv(174, 25%, 85%) | |
| CMYK approx. | cmyk(25, 0, 2, 15) | |
| CSS keyword | material-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#835A5EAnalogous
#A9D9CE#A3D8D5Triadic
#D9D4A3#D4A3D9Split complementary
#794D51#4B1F23Using 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"