Material Design Palette
Copy-ready color values
HEX
#FFE188RGB
rgb(255, 225, 136)HSL
hsl(45, 100%, 77%)HSV
hsv(45, 47%, 100%)CMYK approx.
cmyk(0, 12, 47, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFE188 | |
| RGB | rgb(255, 225, 136) | |
| HSL | hsl(45, 100%, 77%) | |
| HSV | hsv(45, 47%, 100%) | |
| CMYK approx. | cmyk(0, 12, 47, 0) | |
| CSS keyword | material-amber-900 |
Contrast and classification
LightLightness1.28:1Contrast with white16.38:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFE494
White 30%#FFEAAC
White 70%#FFF6DB
White 90%#FFFCF3
Black 10%#E6CB7A
Black 30%#B39E5F
Black 70%#4D4429
Black 90%#1A170E
Harmony palettes
Complementary
#001E77#3D5498Analogous
#FBE196#FFD693Triadic
#E188FF#88FFE1Split complementary
#2E478F#001962Using Material Amber 900
Material Amber 900 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-amber-900: #ffe188;
}
.button-primary {
background: var(--color-material-amber-900);
color: #000000;
}
$material-amber-900: #ffe188;
// Tailwind arbitrary value
class="bg-[#ffe188] text-white"