Material Design Palette

Copy-ready color values

HEX#00A5BB
RGBrgb(0, 165, 187)
HSLhsl(187, 100%, 37%)
HSVhsv(187, 100%, 73%)
CMYK approx.cmyk(100, 12, 0, 27)

Color value table

FormatValueCopy
HEX#00A5BB
RGBrgb(0, 165, 187)
HSLhsl(187, 100%, 37%)
HSVhsv(187, 100%, 73%)
CMYK approx.cmyk(100, 12, 0, 27)
CSS keywordmaterial-cyan-400

Contrast and classification

DarkLightness2.96:1Contrast with white7.10:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#1AAEC2

White 30%
#4DC0CF

White 70%
#B3E4EB

White 90%
#E6F6F8

Black 10%
#0095A8

Black 30%
#007483

Black 70%
#003238

Black 90%
#001113

Harmony palettes

Complementary

#FF5A44
#FF8271

Analogous

#14A5A5
#00A8B8

Triadic

#A5BB00
#BB00A5

Split complementary

#FF7866
#D14A38

Using Material Cyan 400

Material Cyan 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-cyan-400: #00a5bb;
}

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

$material-cyan-400: #00a5bb;

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