Material Design Palette
Copy-ready color values
HEX
#007267RGB
rgb(0, 114, 103)HSL
hsl(174, 100%, 22%)HSV
hsv(174, 100%, 45%)CMYK approx.
cmyk(100, 0, 10, 55)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #007267 | |
| RGB | rgb(0, 114, 103) | |
| HSL | hsl(174, 100%, 22%) | |
| HSV | hsv(174, 100%, 45%) | |
| CMYK approx. | cmyk(100, 0, 10, 55) | |
| CSS keyword | material-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#FFA8B1Analogous
#0E725B#007168Triadic
#726700#670072Split complementary
#FFA2AB#D1747DUsing 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"