Amber color: code #FFBF00

Amber

#FFBF00

Color codes

  • HEX#FFBF00
  • RGBrgb(255, 191, 0)
  • HSLhsl(45, 100%, 50%)
  • HSVhsv(45, 100%, 100%)
  • CMYKcmyk(0%, 25%, 100%, 0%)
  • LABlab(81% 10.4 83)
  • OKLCHoklch(84% 0.172 84.1)

About the color Amber

Amber has the HEX code #FFBF00, which corresponds to rgb(255, 191, 0) in the RGB model. On the color wheel its hue sits at 45°, with 100% saturation and 50% lightness (hsl(45, 100%, 50%)).

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 12.70:1 contrast ratio on it, versus 1.65:1 for white.

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

Lighter tints

Darker shades

Color combinations with Amber

Complementary

#FFBF00 · #0040FF

Analogous

#FF4000 · #FFBF00 · #BFFF00

Triadic

#FFBF00 · #00FFBF · #BF00FF

Tetradic

#FFBF00 · #00FF40 · #0040FF · #FF00BF

Split-complementary

#FFBF00 · #00BFFF · #4000FF

Monochromatic

#806000 · #CC9900 · #FFBF00 · #FFD24D · #FFE699

Amber with white and black text

White text Aa Bb Cc 123
1.65:1 · fails WCAG
Black text Aa Bb Cc 123
12.70:1 · AAA

Test other pairs in the contrast checker

How to use it in CSS

:root {
  --color-amber: #FFBF00;
  --color-amber-rgb: 255, 191, 0;
}

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