Champagne (Yellow)
#FFDFD3
RGB: 255, 223, 211
Color OverviewHEX #FFDFD3

#FFDFD3 Color Code Information

In the RGB color space, #FFDFD3 is composed of 100% red, 87% green, and 83% blue. In the HSL color space, it has a hue of 16°, saturation of 100%, and lightness of 91%.

HEX
#FFDFD3
RGB
255, 223, 211
HSL
16°, 100%, 91%
HSV
16°, 17%, 100%
CMYK
0%, 13%, 17%, 0%
Name Match
Champagne
Closest Standard

Shades of #FFDFD3 (Darker Variations)

Shades are created by progressively mixing the base color with black.

Tints of #FFDFD3 (Lighter Variations)

Tints are created by progressively mixing the base color with pure white.

Tones of #FFDFD3 (Muted Variations)

Tones are created by mixing the base color with true neutral gray.

Color Harmonies for #FFDFD3

Calculated color schemes based on classic color wheel angles for graphic and web design.

WCAG Accessibility Contrast Ratios

Verification against Web Content Accessibility Guidelines (WCAG 2.1) standards for web text readability.

Sample Text on #FFDFD3 Background
Contrast Ratio against Pure White (#FFFFFF):1.25 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #FFDFD3 Background
Contrast Ratio against Pure Black (#000000):16.75 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

CSS Variables & Declarations
:root {
  --color-brand: #FFDFD3;
}

.element {
  color: #FFDFD3;
  background-color: #FFDFD3;
  border-color: #FFDFD3;
}
Tailwind CSS v4 Utility Classes
<!-- Tailwind Arbitrary Values -->
<div className="bg-[#FFDFD3] text-[#FFDFD3] border-[#FFDFD3]">
  Content styled with #FFDFD3
</div>