Material Design Palette
Copy-ready color values
HEX
#BAC0E4RGB
rgb(186, 192, 228)HSL
hsl(231, 44%, 81%)HSV
hsv(231, 18%, 89%)CMYK approx.
cmyk(18, 16, 0, 11)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #BAC0E4 | |
| RGB | rgb(186, 192, 228) | |
| HSL | hsl(231, 44%, 81%) | |
| HSV | hsv(231, 18%, 89%) | |
| CMYK approx. | cmyk(18, 16, 0, 11) | |
| CSS keyword | material-indigo-1000 |
Contrast and classification
LightLightness1.79:1Contrast with white11.75:1Contrast with blackBlue / CyanColor family
Shade and tint preview
White 10%#C1C6E7
White 30%#CFD3EC
White 70%#EAECF7
White 90%#F8F9FC
Black 10%#A7ADCD
Black 30%#8286A0
Black 70%#383A44
Black 90%#131317
Harmony palettes
Complementary
#453F1B#726D52Analogous
#BBC0DF#BAC4E0Triadic
#C0E4BA#E4BAC0Split complementary
#666244#393416Using Material Indigo 1000
Material Indigo 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-indigo-1000: #bac0e4;
}
.button-primary {
background: var(--color-material-indigo-1000);
color: #000000;
}
$material-indigo-1000: #bac0e4;
// Tailwind arbitrary value
class="bg-[#bac0e4] text-white"