Material Design Palette

Copy-ready color values

HEX#7AC0F8
RGBrgb(122, 192, 248)
HSLhsl(207, 90%, 73%)
HSVhsv(207, 51%, 97%)
CMYK approx.cmyk(51, 23, 0, 3)

Color value table

FormatValueCopy
HEX#7AC0F8
RGBrgb(122, 192, 248)
HSLhsl(207, 90%, 73%)
HSVhsv(207, 51%, 97%)
CMYK approx.cmyk(51, 23, 0, 3)
CSS keywordmaterial-blue-800

Contrast and classification

LightLightness1.96:1Contrast with white10.72:1Contrast with blackBlue / CyanColor family

Shade and tint preview

White 10%
#87C6F9

White 30%
#A2D3FA

White 70%
#D7ECFD

White 90%
#F2F9FE

Black 10%
#6EADDF

Black 30%
#5586AE

Black 70%
#253A4A

Black 90%
#0C1319

Harmony palettes

Complementary

#853F07
#A26D43

Analogous

#82C0E9
#7AC7F1

Triadic

#C0F87A
#F87AC0

Split complementary

#9B6234
#6D3406

Using Material Blue 800

Material Blue 800 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-blue-800: #7ac0f8;
}

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

$material-blue-800: #7ac0f8;

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