Material Design Palette
Copy-ready color values
HEX
#A3E7F0RGB
rgb(163, 231, 240)HSL
hsl(187, 72%, 79%)HSV
hsv(187, 32%, 94%)CMYK approx.
cmyk(32, 4, 0, 6)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #A3E7F0 | |
| RGB | rgb(163, 231, 240) | |
| HSL | hsl(187, 72%, 79%) | |
| HSV | hsv(187, 32%, 94%) | |
| CMYK approx. | cmyk(32, 4, 0, 6) | |
| CSS keyword | material-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#834F49Analogous
#ABE7E7#A3E8EFTriadic
#E7F0A3#F0A3E7Split complementary
#79423A#4B140CUsing 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"