Powder Blue (Blue)
#99FFDF
RGB: 153, 255, 223
Color OverviewHEX #99FFDF

#99FFDF Color Code Information

In the RGB color space, #99FFDF is composed of 60% red, 100% green, and 87% blue. In the HSL color space, it has a hue of 161°, saturation of 100%, and lightness of 80%.

HEX
#99FFDF
RGB
153, 255, 223
HSL
161°, 100%, 80%
HSV
161°, 40%, 100%
CMYK
40%, 0%, 13%, 0%
Name Match
Powder Blue
Closest Standard

Shades of #99FFDF (Darker Variations)

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

Tints of #99FFDF (Lighter Variations)

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

Tones of #99FFDF (Muted Variations)

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

Color Harmonies for #99FFDF

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 #99FFDF Background
Contrast Ratio against Pure White (#FFFFFF):1.18 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)
Sample Text on #99FFDF Background
Contrast Ratio against Pure Black (#000000):17.72 : 1
WCAG AA (4.5:1)
WCAG AAA (7.0:1)

Developer Code Snippets & Tailwind CSS

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

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