Material Design Palette

Copy-ready color values

HEX#008478
RGBrgb(0, 132, 120)
HSLhsl(175, 100%, 26%)
HSVhsv(175, 100%, 52%)
CMYK approx.cmyk(100, 0, 9, 48)

Color value table

FormatValueCopy
HEX#008478
RGBrgb(0, 132, 120)
HSLhsl(175, 100%, 26%)
HSVhsv(175, 100%, 52%)
CMYK approx.cmyk(100, 0, 9, 48)
CSS keywordmaterial-teal-400

Contrast and classification

DarkLightness4.59:1Contrast with white4.57:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A9086

White 30%
#4DA9A1

White 70%
#B3DAD7

White 90%
#E6F3F2

Black 10%
#00776C

Black 30%
#005C54

Black 70%
#002824

Black 90%
#000D0C

Harmony palettes

Complementary

#FF7B87
#FF9BA4

Analogous

#10846A
#008379

Triadic

#847800
#780084

Split complementary

#FF939D
#D1656F

Using Material Teal 400

Material Teal 400 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-400: #008478;
}

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

$material-teal-400: #008478;

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