Material Design Palette
Copy-ready color values
HEX
#FFCB2FRGB
rgb(255, 203, 47)HSL
hsl(45, 100%, 59%)HSV
hsv(45, 82%, 100%)CMYK approx.
cmyk(0, 20, 82, 0)Color value table
| Format | Value | Copy |
|---|---|---|
| HEX | #FFCB2F | |
| RGB | rgb(255, 203, 47) | |
| HSL | hsl(45, 100%, 59%) | |
| HSV | hsv(45, 82%, 100%) | |
| CMYK approx. | cmyk(0, 20, 82, 0) | |
| CSS keyword | material-amber-600 |
Contrast and classification
LightLightness1.52:1Contrast with white13.84:1Contrast with blackRed / OrangeColor family
Shade and tint preview
White 10%#FFD044
White 30%#FFDB6D
White 70%#FFEFC1
White 90%#FFFAEA
Black 10%#E6B72A
Black 30%#B38E21
Black 70%#4D3D0E
Black 90%#1A1405
Harmony palettes
Complementary
#0034D0#3D65DBAnalogous
#F9CB48#FFB842Triadic
#CB2FFF#2FFFCBSplit complementary
#2E59D8#002BABUsing Material Amber 600
Material Amber 600 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-600: #ffcb2f;
}
.button-primary {
background: var(--color-material-amber-600);
color: #000000;
}
$material-amber-600: #ffcb2f;
// Tailwind arbitrary value
class="bg-[#ffcb2f] text-white"