Material Design Palette
Copy-ready color values
HEX
#7582CARGB
rgb(117, 130, 202)HSL
hsl(231, 45%, 63%)HSV
hsv(231, 42%, 79%)CMYK approx.
cmyk(42, 36, 0, 21)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #7582CA | |
| RGB | rgb(117, 130, 202) | |
| HSL | hsl(231, 45%, 63%) | |
| HSV | hsv(231, 42%, 79%) | |
| CMYK approx. | cmyk(42, 36, 0, 21) | |
| CSS keyword | material-indigo-700 |
Contrast and classification
LightLightness3.62:1Contrast with white5.80:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#838FCF
White 30%#9EA8DA
White 70%#D6DAEF
White 90%#F1F3FA
Black 10%#6975B6
Black 30%#525B8D
Black 70%#23273D
Black 90%#0C0D14
Harmony palettes
Complementary
#8A7D35#A69C65Analogous
#7782C0#758BC1Triadic
#82CA75#CA7582Split complementary
#9F9459#71672BUsing Material Indigo 700
Material Indigo 700 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-indigo-700: #7582ca;
}
.button-primary {
background: var(--color-material-indigo-700);
color: #000000;
}
$material-indigo-700: #7582ca;
// Tailwind arbitrary value
class="bg-[#7582ca] text-white"