Material Design Palette
Copy-ready color values
HEX
#F7786ERGB
rgb(247, 120, 110)HSL
hsl(4, 90%, 70%)HSV
hsv(4, 55%, 97%)CMYK approx.
cmyk(0, 51, 55, 3)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #F7786E | |
| RGB | rgb(247, 120, 110) | |
| HSL | hsl(4, 90%, 70%) | |
| HSV | hsv(4, 55%, 97%) | |
| CMYK approx. | cmyk(0, 51, 55, 3) | |
| CSS keyword | material-red-700 |
Contrast and classification
LightLightness2.67:1Contrast with white7.87:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#F8867D
White 30%#F9A19A
White 70%#FDD7D4
White 90%#FEF2F1
Black 10%#DE6C63
Black 30%#AD544D
Black 70%#4A2421
Black 90%#190C0B
Harmony palettes
Complementary
#088791#43A4ABAnalogous
#E8787E#F7776FTriadic
#786EF7#6EF778Split complementary
#349DA5#076F77Using Material Red 700
Material Red 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-red-700: #f7786e;
}
.button-primary {
background: var(--color-material-red-700);
color: #000000;
}
$material-red-700: #f7786e;
// Tailwind arbitrary value
class="bg-[#f7786e] text-white"