Material Design Palette

Copy-ready color values

HEX#007267
RGBrgb(0, 114, 103)
HSLhsl(174, 100%, 22%)
HSVhsv(174, 100%, 45%)
CMYK approx.cmyk(100, 0, 10, 55)

Color value table

FormatValueCopy
HEX#007267
RGBrgb(0, 114, 103)
HSLhsl(174, 100%, 22%)
HSVhsv(174, 100%, 45%)
CMYK approx.cmyk(100, 0, 10, 55)
CSS keywordmaterial-teal-300

Contrast and classification

DarkLightness5.83:1Contrast with white3.60:1Contrast with blackGreen / TealColor family

Shade and tint preview

White 10%
#1A8076

White 30%
#4D9C95

White 70%
#B3D5D1

White 90%
#E6F1F0

Black 10%
#00675D

Black 30%
#005048

Black 70%
#00221F

Black 90%
#000B0A

Harmony palettes

Complementary

#FF8D98
#FFA8B1

Analogous

#0E725B
#007168

Triadic

#726700
#670072

Split complementary

#FFA2AB
#D1747D

Using Material Teal 300

Material Teal 300 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-300: #007267;
}

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

$material-teal-300: #007267;

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