Material Design Palette

Copy-ready color values

HEX#A3E7F0
RGBrgb(163, 231, 240)
HSLhsl(187, 72%, 79%)
HSVhsv(187, 32%, 94%)
CMYK approx.cmyk(32, 4, 0, 6)

Color value table

FormatValueCopy
HEX#A3E7F0
RGBrgb(163, 231, 240)
HSLhsl(187, 72%, 79%)
HSVhsv(187, 32%, 94%)
CMYK approx.cmyk(32, 4, 0, 6)
CSS keywordmaterial-cyan-1000

Contrast and classification

LightLightness1.38:1Contrast with white15.25:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#ACE9F2

White 30%
#BFEEF5

White 70%
#E3F8FB

White 90%
#F6FDFE

Black 10%
#93D0D8

Black 30%
#72A2A8

Black 70%
#314548

Black 90%
#101718

Harmony palettes

Complementary

#5C180F
#834F49

Analogous

#ABE7E7
#A3E8EF

Triadic

#E7F0A3
#F0A3E7

Split complementary

#79423A
#4B140C

Using Material Cyan 1000

Material Cyan 1000 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-1000: #a3e7f0;
}

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

$material-cyan-1000: #a3e7f0;

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