Material Design Palette

Copy-ready color values

HEX#E0CF34
RGBrgb(224, 207, 52)
HSLhsl(54, 74%, 54%)
HSVhsv(54, 77%, 88%)
CMYK approx.cmyk(0, 8, 77, 12)

Color value table

FormatValueCopy
HEX#E0CF34
RGBrgb(224, 207, 52)
HSLhsl(54, 74%, 54%)
HSVhsv(54, 77%, 88%)
CMYK approx.cmyk(0, 8, 77, 12)
CSS keywordmaterial-yellow-400

Contrast and classification

DarkLightness1.60:1Contrast with white13.14:1Contrast with blackRed / OrangeColor family

Shade and tint preview

White 10%
#E3D448

White 30%
#E9DD71

White 70%
#F6F1C2

White 90%
#FCFAEB

Black 10%
#CABA2F

Black 30%
#9D9124

Black 70%
#433E10

Black 90%
#161505

Harmony palettes

Complementary

#1F30CB
#5562D7

Analogous

#DECF49
#E0BC47

Triadic

#CF34E0
#34E0CF

Split complementary

#4755D4
#1927A6

Using Material Yellow 400

Material Yellow 400 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-yellow-400: #e0cf34;
}

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

$material-yellow-400: #e0cf34;

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