Material Design Palette
Copy-ready color values
HEX
#FFF389RGB
rgb(255, 243, 137)HSL
hsl(54, 100%, 77%)HSV
hsv(54, 46%, 100%)CMYK approx.
cmyk(0, 5, 46, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFF389 | |
| RGB | rgb(255, 243, 137) | |
| HSL | hsl(54, 100%, 77%) | |
| HSV | hsv(54, 46%, 100%) | |
| CMYK approx. | cmyk(0, 5, 46, 0) | |
| CSS keyword | material-yellow-800 |
Contrast and classification
LightLightness1.14:1Contrast with white18.43:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFF495
White 30%#FFF7AC
White 70%#FFFBDC
White 90%#FFFEF3
Black 10%#E6DB7B
Black 30%#B3AA60
Black 70%#4D4929
Black 90%#1A180E
Harmony palettes
Complementary
#000C76#3D4697Analogous
#FEF397#FFE696Triadic
#F389FF#89FFF3Split complementary
#2E388F#000A61Using Material Yellow 800
Material Yellow 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-yellow-800: #fff389;
}
.button-primary {
background: var(--color-material-yellow-800);
color: #000000;
}
$material-yellow-800: #fff389;
// Tailwind arbitrary value
class="bg-[#fff389] text-white"