Material Design Palette

Copy-ready color values

HEX#007888
RGBrgb(0, 120, 136)
HSLhsl(187, 100%, 27%)
HSVhsv(187, 100%, 53%)
CMYK approx.cmyk(100, 12, 0, 47)

Color value table

FormatValueCopy
HEX#007888
RGBrgb(0, 120, 136)
HSLhsl(187, 100%, 27%)
HSVhsv(187, 100%, 53%)
CMYK approx.cmyk(100, 12, 0, 47)
CSS keywordmaterial-cyan-200

Contrast and classification

DarkLightness5.20:1Contrast with white4.04:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A8694

White 30%
#4DA1AC

White 70%
#B3D7DB

White 90%
#E6F2F3

Black 10%
#006C7A

Black 30%
#00545F

Black 70%
#002429

Black 90%
#000C0E

Harmony palettes

Complementary

#FF8777
#FFA498

Analogous

#0E7878
#007A86

Triadic

#788800
#880078

Split complementary

#FF9D8F
#D16F62

Using Material Cyan 200

Material Cyan 200 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-cyan-200: #007888;
}

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

$material-cyan-200: #007888;

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