Material Design Palette

Copy-ready color values

HEX#008FA1
RGBrgb(0, 143, 161)
HSLhsl(187, 100%, 32%)
HSVhsv(187, 100%, 63%)
CMYK approx.cmyk(100, 11, 0, 37)

Color value table

FormatValueCopy
HEX#008FA1
RGBrgb(0, 143, 161)
HSLhsl(187, 100%, 32%)
HSVhsv(187, 100%, 63%)
CMYK approx.cmyk(100, 11, 0, 37)
CSS keywordmaterial-cyan-300

Contrast and classification

DarkLightness3.86:1Contrast with white5.44:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1A9AAA

White 30%
#4DB1BD

White 70%
#B3DDE3

White 90%
#E6F4F6

Black 10%
#008191

Black 30%
#006471

Black 70%
#002B30

Black 90%
#000E10

Harmony palettes

Complementary

#FF705E
#FF9285

Analogous

#118F8E
#00919F

Triadic

#8FA100
#A1008F

Split complementary

#FF8A7B
#D15C4D

Using Material Cyan 300

Material Cyan 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-cyan-300: #008fa1;
}

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

$material-cyan-300: #008fa1;

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