Mustard color: code #FFDB58

Mustard

#FFDB58

Color codes

  • HEX#FFDB58
  • RGBrgb(255, 219, 88)
  • HSLhsl(47, 100%, 67%)
  • HSVhsv(47, 65%, 100%)
  • CMYKcmyk(0%, 14%, 65%, 0%)
  • LABlab(88.3% -1.5 66.8)
  • OKLCHoklch(89.9% 0.151 93.7)

About the color Mustard

Mustard has the HEX code #FFDB58, which corresponds to rgb(255, 219, 88) in the RGB model. On the color wheel its hue sits at 47°, with 100% saturation and 67% lightness (hsl(47, 100%, 67%)).

Because of its hue it reads as a warm color: it tends to feel energetic and close, and it visually “advances” in a composition.

As a background it calls for dark text: black reaches a 15.52:1 contrast ratio on it, versus 1.35:1 for white.

For print, the approximate conversion is cmyk(0%, 14%, 65%, 0%). Always confirm with your printer’s color profile, because the result depends on paper and ink.

Lighter tints

Darker shades

Color combinations with Mustard

Complementary

#FFDB58 · #577BFF

Analogous

#FF8657 · #FFDB58 · #CFFF57

Triadic

#FFDB58 · #57FFDB · #DB57FF

Tetradic

#FFDB58 · #57FF86 · #577BFF · #FF57CF

Split-complementary

#FFDB58 · #57CFFF · #8657FF

Monochromatic

#D6A800 · #FFCF24 · #FFDB58 · #FFEBA3 · #FFFCF0

Mustard with white and black text

White text Aa Bb Cc 123
1.35:1 · fails WCAG
Black text Aa Bb Cc 123
15.52:1 · AAA

Test other pairs in the contrast checker

Which mustard?

The most widely used HEX for “mustard” on the web is #FFDB58 (rgb(255, 219, 88)), a warm, creamy yellow with a slight lean toward orange. It is not a CSS named color; it comes from popular color-name lists. In fashion and interiors, though, “mustard” usually means a much deeper shade, somewhere between yellow and ochre, closer to the condiment in the jar. If you are matching a website to a mustard sweater or sofa, you will probably need to darken it. Photograph the item in natural light and use the image color picker to grab the real HEX.

A yellow with retro baggage

Where pure yellow feels cheerful and urgent, mustard reads as more mature, cozy and autumnal. It is strongly associated with 1960s and ’70s design, wood furniture and geometric prints, and it returns to fashion collections in cycles. These associations are Western and generational: to someone who didn’t grow up with that aesthetic, mustard may simply look like “a subdued yellow.”

Applications and pairings

In interiors, it works on armchairs, cushions and curtains, especially next to dark wood and gray. In fashion, mustard sweaters, coats and scarves flatter warm undertones and go with denim, brown and green. In branding, it helps coffee shops, bakeries, bookstores and vintage design studios signal warmth without the childlike feel of pure yellow. Pairings that work:

Mustard on screen: watch out

#FFDB58 has a contrast ratio of just 1.35:1 with white, so never set mustard text on white or white text on mustard. On top of it, use black or charcoal (above 15:1 with black). If you need a readable “mustard” as a text color on a light background, darken it to something like #8A6D00, which lands near 5:1. In dark mode, the original shade works well as an accent. Test it in the contrast checker.

How to use it in CSS

:root {
  --color-mustard: #FFDB58;
  --color-mustard-rgb: 255, 219, 88;
}

.elemento {
  background-color: var(--color-mustard);
  color: #000000;
}